Changeset 117 in tspsg-svn for trunk/src/settingsdialog.cpp


Ignore:
Timestamp:
May 2, 2010, 12:51:20 PM (14 years ago)
Author:
laleppa
Message:

+ Started adding a toolbar customization with the ude of QtToolbarDialog? (http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Widgets/qttoolbardialog/).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/settingsdialog.cpp

    r116 r117  
    3535        setupUi(this);
    3636
    37         buttonBox->button(QDialogButtonBox::Save)->setIcon(QIcon(":/images/icons/button_ok.png"));
     37        buttonBox->button(QDialogButtonBox::Save)->setIcon(QIcon(":/images/icons/dialog-ok.png"));
    3838        buttonBox->button(QDialogButtonBox::Save)->setStatusTip(tr("Save new preferences"));
    3939        buttonBox->button(QDialogButtonBox::Save)->setCursor(QCursor(Qt::PointingHandCursor));
    40         buttonBox->button(QDialogButtonBox::Cancel)->setIcon(QIcon(":/images/icons/button_cancel.png"));
     40        buttonBox->button(QDialogButtonBox::Cancel)->setIcon(QIcon(":/images/icons/dialog-cancel.png"));
    4141        buttonBox->button(QDialogButtonBox::Cancel)->setStatusTip(tr("Close without saving preferences"));
    4242        buttonBox->button(QDialogButtonBox::Cancel)->setCursor(QCursor(Qt::PointingHandCursor));
     
    108108        imgIcon->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Expanding);
    109109        imgIcon->setFrameShape(QFrame::NoFrame);
    110         imgIcon->setPixmap(QPixmap(":/images/icons/preferences_system.png"));
     110        imgIcon->setPixmap(QPixmap(":/images/icons/preferences-system.png"));
    111111        imgIcon->setStyleSheet("background-color: #0080C0; padding-top: 11px;");
    112112        imgIcon->setAlignment(Qt::AlignTop | Qt::AlignHCenter);
Note: See TracChangeset for help on using the changeset viewer.