Changeset 7ed8b57eea in tspsg for src/main.cpp
- Timestamp:
- Aug 31, 2013, 11:52:34 PM (11 years ago)
- Branches:
- appveyor, imgbot, master, readme
- Children:
- 2a5e50e0a9
- Parents:
- 1241232377
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cpp
r1241232377 r7ed8b57eea 23 23 24 24 #include "mainwindow.h" 25 #include "version.h" 26 27 #ifdef Q_OS_BLACKBERRY 28 # include "bb10proxystyle.h" 29 #endif // Q_OS_BLACKBERRY 25 30 26 31 #include <QDateTime> … … 28 33 #include <QTextCodec> 29 34 #include <QTranslator> 30 #include "version.h"31 35 32 36 #if QT_VERSION < QT_VERSION_CHECK(4,6,0) … … 64 68 app.setApplicationName("TSP Solver and Generator"); 65 69 app.setApplicationVersion(BUILD_VERSION); 70 71 #ifdef Q_OS_BLACKBERRY 72 QApplication::setStartDragDistance(42); 73 QApplication::setStyle(new BB10ProxyStyle); 74 app.setStyleSheet(CSS_FIX); 75 #endif // Q_OS_BLACKBERRY 66 76 67 77 // Seeding random number generator
Note: See TracChangeset
for help on using the changeset viewer.