Changeset 157 in tspsg-svn for trunk/src/mainwindow.cpp
- Timestamp:
- Mar 22, 2011, 9:31:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/mainwindow.cpp
r154 r157 606 606 dlg->setWindowTitle(tr("About %1").arg(QCoreApplication::applicationName())); 607 607 dlg->setWindowIcon(GET_ICON("help-about")); 608 608 609 dlg->setLayout(vb); 609 610 … … 715 716 QMessageBox::warning(this, tr("Solution Result"), tr("Unable to find a solution.\nMaybe, this task has no solution.")); 716 717 } 717 pd.setLabelText(tr(" Cleaningup..."));718 pd.setLabelText(tr("Memory cleanup...")); 718 719 pd.setMaximum(0); 719 720 pd.setCancelButton(NULL); … … 801 802 while ((step->next != SStep::NoNextStep) && (c < spinCities->value())) { 802 803 if (pd.wasCanceled()) { 803 pd.setLabelText(tr(" Cleaningup..."));804 pd.setLabelText(tr("Memory cleanup...")); 804 805 pd.setMaximum(0); 805 806 pd.setCancelButton(NULL); … … 934 935 solutionText->moveCursor(QTextCursor::Start); 935 936 936 pd.setLabelText(tr(" Cleaningup..."));937 pd.setLabelText(tr("Memory cleanup...")); 937 938 pd.setMaximum(0); 938 939 pd.setCancelButton(NULL); … … 1106 1107 int r; 1107 1108 if (settings->value("Output/HQGraph", DEF_HQ_GRAPH).toBool()) 1108 r = 70;1109 r = logicalDpiX() / 1.27; 1109 1110 else 1110 r = 35;1111 r = logicalDpiX() / 2.54; 1111 1112 qreal x, y; 1112 1113 if (step != NULL)
Note: See TracChangeset
for help on using the changeset viewer.