Changeset 019894f5ef in tspsg for src
- Timestamp:
- Apr 15, 2011, 6:28:48 AM (14 years ago)
- Branches:
- 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
- Children:
- f6352492e7
- Parents:
- 27b1dca32b
- git-author:
- Oleksii Serdiuk <contacts@…> (04/15/11 06:28:48)
- git-committer:
- Oleksii Serdiuk <contacts@…> (06/29/12 19:45:59)
- Location:
- src
- Files:
-
- 4 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
src/3rdparty/qttoolbardialog-2.2_1-opensource/src/qttoolbardialog.cpp
r27b1dca32b r019894f5ef 1812 1812 // ui.currentToolBarList->setAcceptDrops(true); 1813 1813 1814 d_ptr->ui.upButton->setIcon(QIcon(":/images/icons/go-up.png"));1815 d_ptr->ui.downButton->setIcon(QIcon(":/images/icons/go-down.png"));1816 d_ptr->ui.leftButton->setIcon(QIcon(":/images/icons/go-previous.png"));1817 d_ptr->ui.rightButton->setIcon(QIcon(":/images/icons/go-next.png"));1818 d_ptr->ui.newButton->setIcon(QIcon(":/images/icons/list-add.png"));1819 d_ptr->ui.removeButton->setIcon(QIcon(":/images/icons/list-remove.png"));1814 d_ptr->ui.upButton->setIcon(GET_ICON("go-up")); 1815 d_ptr->ui.downButton->setIcon(GET_ICON("go-down")); 1816 d_ptr->ui.leftButton->setIcon(GET_ICON("go-previous")); 1817 d_ptr->ui.rightButton->setIcon(GET_ICON("go-next")); 1818 d_ptr->ui.newButton->setIcon(GET_ICON("list-add")); 1819 d_ptr->ui.removeButton->setIcon(GET_ICON("list-remove")); 1820 1820 1821 1821 connect(d_ptr->ui.newButton, SIGNAL(clicked()), this, SLOT(newClicked())); -
src/3rdparty/qttoolbardialog-2.2_1-opensource/src/qttoolbardialog.qrc
r27b1dca32b r019894f5ef 1 1 <RCC> 2 2 <qresource prefix="/"> 3 <file>images/icons/ go-down.png</file>4 <file>images/icons/ go-next.png</file>5 <file>images/icons/ go-up.png</file>6 <file>images/icons/ list-add.png</file>7 <file>images/icons/ list-remove.png</file>3 <file>images/icons/128x128/go-down.png</file> 4 <file>images/icons/128x128/go-next.png</file> 5 <file>images/icons/128x128/go-up.png</file> 6 <file>images/icons/128x128/list-add.png</file> 7 <file>images/icons/128x128/list-remove.png</file> 8 8 </qresource> 9 9 </RCC> -
src/mainwindow.cpp
r27b1dca32b r019894f5ef 524 524 { 525 525 if (!hasUpdater()) { 526 QMessageBox::warning(this, tr("Unsupported Feature"), tr("Sorry, but this feature is not supported on your platform\nor support for this featurewas not installed."));526 QMessageBox::warning(this, tr("Unsupported Feature"), tr("Sorry, but this feature is not supported on your\nplatform or support for it was not installed.")); 527 527 return; 528 528 } … … 738 738 QPushButton *cancel = new QPushButton(&pd); 739 739 cancel->setIcon(GET_ICON("dialog-cancel")); 740 cancel->setText(QCoreApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. Th istranslation will be taken from Qt translation files."));740 cancel->setText(QCoreApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. The translation will be taken from Qt translation files.")); 741 741 pd.setCancelButton(cancel); 742 742 pd.setMaximum(n); … … 1857 1857 1858 1858 QMenu *m = new QMenu(this); 1859 m->addAction(QApplication::translate("QDialogButtonBox", "Discard", "No need to translate this. Th istranslation will be taken from Qt translation files."),1859 m->addAction(QApplication::translate("QDialogButtonBox", "Discard", "No need to translate this. The translation will be taken from Qt translation files."), 1860 1860 this, SLOT(discard())); 1861 m->addAction(QApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. Th istranslation will be taken from Qt translation files."),1861 m->addAction(QApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. The translation will be taken from Qt translation files."), 1862 1862 this, SLOT(cancel())); 1863 1863 1864 QAction *o = new QAction(QApplication::translate("Q MenuBar", "Actions", "No need to translate this. This translation will be taken from Qt translation files."), this);1864 QAction *o = new QAction(QApplication::translate("QtToolBarDialog", "Actions"), this); 1865 1865 o->setSoftKeyRole(QAction::NegativeSoftKey); 1866 1866 o->setMenu(m); -
src/tspmodel.cpp
r27b1dca32b r019894f5ef 404 404 QMessageBox::critical(QApplication::activeWindow(), tr("Task Load"), tr("Unable to load task:") + "\n" 405 405 + tr("File version (%1) is newer than this version of %3 supports (%2).\n" 406 "Please, try to update the application. Also, the file mightbe corrupted.")406 "Please, try to update the application. Also, the file could be corrupted.") 407 407 .arg(version).arg(TSPT_VERSION).arg(QApplication::applicationName())); 408 408 QApplication::restoreOverrideCursor();
Note: See TracChangeset
for help on using the changeset viewer.