Changeset 22391 in vbox
- Timestamp:
- Aug 21, 2009 4:05:59 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r22356 r22391 195 195 VirtualBox_src/main.cpp_DEFS += VBOX_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" 196 196 VirtualBox_src/main.cpp_DEPS += $(VBOX_VERSION_MK) 197 198 ifdef VBOX_BLEEDING_EDGE 199 VirtualBox_src/VBoxConsoleWnd.cpp_DEFS += \ 200 VBOX_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \ 201 VBOX_SVN_REV=\"$(VBOX_SVN_REV)\" \ 202 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\" 203 VirtualBox_src/VBoxSelectorWnd.cpp_DEFS += \ 204 VBOX_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \ 205 VBOX_SVN_REV=\"$(VBOX_SVN_REV)\" \ 206 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\" 207 VirtualBox_src/VBoxAboutDlg.cpp_DEFS += \ 208 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\" 209 VirtualBox_src/VBoxConsoleWnd.cpp_DEPS += $(VBOX_VERSION_MK) $(VBOX_SVN_REV_KMK) 210 VirtualBox_src/VBoxSelectorWnd.cpp_DEPS += $(VBOX_VERSION_MK) $(VBOX_SVN_REV_KMK) 211 endif 197 212 198 213 VirtualBox_INCS = \ -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxAboutDlg.cpp
r18829 r22391 47 47 setWindowTitle (tr ("VirtualBox - About")); 48 48 QString aboutText = tr ("VirtualBox Graphical User Interface"); 49 #ifdef VBOX_BLEEDING_EDGE 50 QString versionText = "EXPERIMENTAL build %1 - " + QString(VBOX_BLEEDING_EDGE); 51 #else 49 52 QString versionText = tr ("Version %1"); 53 #endif 50 54 #if VBOX_OSE 51 55 mAboutText = aboutText + " " + versionText.arg (mVersion) + "\n" + -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r22157 r22391 1643 1643 #endif 1644 1644 1645 #ifdef VBOX_BLEEDING_EDGE 1646 caption_prefix += QString(" EXPERIMENTAL build "VBOX_VERSION_STRING" r"VBOX_SVN_REV" - "VBOX_BLEEDING_EDGE); 1647 #endif 1645 1648 /* 1646 1649 * Note: All action shortcuts should be added to the menu text in the -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp
r22173 r22391 1286 1286 { 1287 1287 #ifdef VBOX_OSE 1288 setWindowTitle (tr ("VirtualBox OSE"));1288 QString title (tr ("VirtualBox OSE")); 1289 1289 #else 1290 setWindowTitle (tr ("Sun VirtualBox"));1290 QString title (tr ("Sun VirtualBox")); 1291 1291 #endif 1292 1293 #ifdef VBOX_BLEEDING_EDGE 1294 title += QString(" EXPERIMENTAL build "VBOX_VERSION_STRING" r"VBOX_SVN_REV" - "VBOX_BLEEDING_EDGE); 1295 #endif 1296 1297 setWindowTitle (title); 1292 1298 1293 1299 mVmTabWidget->setTabText (mVmTabWidget->indexOf (mVmDetailsView), tr ("&Details"));
Note:
See TracChangeset
for help on using the changeset viewer.