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


Ignore:
Timestamp:
Dec 22, 2009, 8:56:21 PM (14 years ago)
Author:
laleppa
Message:

+ Added Wait Cursor on city number change, because it can take some time (e.g. when changing from 5 to 50 cities).

  • Moved platform specific action definitions from .ui to source.
  • Changed random generation to include defined maximum (it was up to maximum previously).
  • Reverted from native to Qt open/save file dialog under WinCE, because it is more convenient than the native one.
  • English translation is now always loaded at application start before any other language is loaded. This is done to support plurals and some special characters that Qt translation system doesn't "like".
  • Updated translations to reflect recent changes.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/settingsdialog.cpp

    r78 r80  
    181181        labelHint->setText(labelHint->statusTip());
    182182#endif // Q_OS_WINCE
    183         settings = new QSettings(QSettings::IniFormat,QSettings::UserScope,"TSPSG","tspsg");
     183
     184        settings = new QSettings(QSettings::IniFormat, QSettings::UserScope, "TSPSG", "tspsg", this);
     185
    184186        spinRandMin->setMaximum(MAX_RAND_VALUE);
    185187        spinRandMin->setValue(settings->value("MinCost",DEF_RAND_MIN).toInt());
Note: See TracChangeset for help on using the changeset viewer.