- Timestamp:
- 06/27/11 22:39:29 (12 years ago)
- Branches:
- master, qt5
- Children:
- 4fe29d6
- Parents:
- 3686b97
- Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/app/main.cpp
r3686b97 rd17dd78 44 44 QCoreApplication::setOrganizationName("Toastfreeware"); 45 45 QCoreApplication::setApplicationName("ConfClerk"); 46 QCoreApplication::setApplicationVersion(VERSION); 46 47 47 48 SqlEngine::initialize(); // creates "SQLITE" DB connection -
src/global.pri
r3686b97 rd17dd78 3 3 # include this file in each "*.pro" file, where it's needed 4 4 # USAGE: include(./global.pri) 5 6 # VERSION 7 VERSION = 0.5.0 8 DEFINES += VERSION=\\\"$$VERSION\\\" 5 9 6 10 # Define 'MAEMO' specific CONFIG/DEFINE -
src/gui/about.ui
r3686b97 rd17dd78 190 190 <property name="text"> 191 191 <string>(Successor of FOSDEM schedule)</string> 192 </property> 193 </widget> 194 </item> 195 <item> 196 <widget class="QLabel" name="labelVersion"> 197 <property name="text"> 198 <string>Version %1</string> 192 199 </property> 193 200 </widget> -
src/gui/mainwindow.cpp
r3686b97 rd17dd78 134 134 Ui::AboutDialog ui; 135 135 ui.setupUi(&dialog); 136 ui.labelVersion->setText(ui.labelVersion->text().arg(qApp->applicationVersion())); 136 137 #ifdef N810 137 138 dialog.setFixedWidth(width());
Note: See TracChangeset
for help on using the changeset viewer.