Legend:
- Unmodified
- Added
- Removed
-
trunk/src/main.cpp
r130 r132 47 47 app.setOrganizationName("Oleksii \"Lёppa\" Serdiuk"); 48 48 app.setOrganizationDomain("oleksii.name"); 49 app.setApplicationName("TSP SG: TSPSolver and Generator");49 app.setApplicationName("TSP Solver and Generator"); 50 50 app.setApplicationVersion(BUILD_VERSION); 51 51 … … 53 53 qsrand(QDateTime::currentDateTime().toTime_t() ^ QCursor::pos().x() ^ QCursor::pos().y()); 54 54 55 #ifdef Q_OS_WINCE_WM 56 // Qt "leaves" unpacked .ttf files after running - let's try to delete them. 57 QStringList files = QDir(app.applicationDirPath(), "*.ttf").entryList(); 58 foreach (QString file, files) { 59 QFile::remove(file); 60 } 61 #endif 55 62 // Don't load the font if it is already available 56 63 if (!QFontDatabase().families().contains(DEF_FONT_FACE)) -
trunk/src/os.h
r116 r132 63 63 * \brief The target operating system ID. 64 64 * 65 * This value isused in task file metadata.65 * This value will be used in task file metadata. 66 66 */ 67 67 #ifdef Q_OS_AIX
Note: See TracChangeset
for help on using the changeset viewer.