Changeset 17 in tspsg-svn for trunk/src/settingsdialog.h
- Timestamp:
- Jun 15, 2009, 5:10:25 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 *. vcproj*1 *.idb 2 2 *.ncb 3 *.pdb 3 4 *.sln 4 5 *.suo 5 *.idb 6 *.pdb 7 ui_* 6 *.vcproj* 7 Makefile* 8 Win32 9 Windows Mobile* 10 debug 8 11 moc_* 9 12 qrc_* 10 tspsg11 Makefile*12 debug13 13 release 14 ui_*
-
- Property svn:ignore
-
trunk/src/settingsdialog.h
r12 r17 1 1 /* 2 2 * TSPSG - TSP Solver and Generator 3 * Copyright (C) 2007 Lёppa <lacontacts[at]gmail[dot]com>3 * Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name> 4 4 * 5 5 * $Id$ … … 26 26 27 27 #include <QDialog> 28 #include "ui_settingsdialog.h" 28 #ifdef Q_OS_WINCE 29 #include "ui_settingsdialog.ce.h" 30 #else 31 #include "ui_settingsdialog.h" 32 #endif // Q_OS_WINCE 29 33 30 34 class SettingsDialog: public QDialog, public Ui::SettingsDialog … … 35 39 36 40 private: 41 #ifndef WINCE 37 42 bool event(QEvent *); 43 #endif 38 44 39 45 private slots: 40 46 void spinRandMinValueChanged(int val) { spinRandMax->setMinimum(val + 1); } 47 void buttonFontClicked(); 41 48 }; 42 49 43 50 #endif // SETTINGSDIALOG_H 44
Note: See TracChangeset
for help on using the changeset viewer.