Changeset 22823 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Sep 7, 2009 7:52:08 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 52044
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r22816 r22823 193 193 endif 194 194 195 VirtualBox_src/main.cpp_DEFS += VBOX_VERSION_STRING=\"$(VBOX_VERSION_STRING)\"196 VirtualBox_src/main.cpp_DEPS += $(VBOX_VERSION_MK)197 198 195 ifdef VBOX_BLEEDING_EDGE 199 196 VirtualBox_src/VBoxConsoleWnd.cpp_DEFS += \ 200 VBOX_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \201 VBOX_SVN_REV=\"$(VBOX_SVN_REV)\" \202 197 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\" 203 198 VirtualBox_src/VBoxSelectorWnd.cpp_DEFS += \ 204 VBOX_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \205 VBOX_SVN_REV=\"$(VBOX_SVN_REV)\" \206 199 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\" 207 200 VirtualBox_src/VBoxAboutDlg.cpp_DEFS += \ … … 209 202 VirtualBox_src/main.cpp_DEFS += \ 210 203 VBOX_BLEEDING_EDGE=\"$(VBOX_BLEEDING_EDGE)\" 211 VirtualBox_src/VBoxConsoleWnd.cpp_DEPS += $(VBOX_VERSION_MK) $(VBOX_SVN_REV_KMK)212 VirtualBox_src/VBoxSelectorWnd.cpp_DEPS += $(VBOX_VERSION_MK) $(VBOX_SVN_REV_KMK)213 204 endif 214 205 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r22816 r22823 72 72 #endif 73 73 74 #include <iprt/buildconfig.h> 74 75 #include <iprt/param.h> 75 76 #include <iprt/path.h> … … 1647 1648 1648 1649 #ifdef VBOX_BLEEDING_EDGE 1649 caption_prefix += QString(" EXPERIMENTAL build "VBOX_VERSION_STRING" r"VBOX_SVN_REV" - "VBOX_BLEEDING_EDGE); 1650 caption_prefix += QString(" EXPERIMENTAL build ") 1651 + QString(RTBldCfgVersion()) 1652 + QString("r") 1653 + QString(RTBldCfgRevisionStr()) 1654 + QString(" - "VBOX_BLEEDING_EDGE); 1650 1655 #endif 1651 1656 /* -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp
r22391 r22823 49 49 #include <QDesktopWidget> 50 50 #include <QToolButton> 51 52 #include <iprt/buildconfig.h> 51 53 52 54 // VBoxVMDetailsView class … … 1292 1294 1293 1295 #ifdef VBOX_BLEEDING_EDGE 1294 title += QString(" EXPERIMENTAL build "VBOX_VERSION_STRING" r"VBOX_SVN_REV" - "VBOX_BLEEDING_EDGE); 1296 title += QString(" EXPERIMENTAL build ") 1297 + QString(RTBldCfgVersion()) 1298 + QString(" r") 1299 + QString(RTBldCfgRevisionStr()) 1300 + QString(" - "VBOX_BLEEDING_EDGE); 1295 1301 #endif 1296 1302 -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r22612 r22823 50 50 #endif 51 51 52 #include <iprt/buildconfig.h> 52 53 #include <iprt/err.h> 53 54 #include <iprt/initterm.h> … … 241 242 #endif 242 243 243 RTPrintf("Sun VirtualBox Graphical User Interface "VBOX_VERSION_STRING"\n"244 RTPrintf("Sun VirtualBox Graphical User Interface %s\n" 244 245 "(C) 2005-2009 Sun Microsystems, Inc.\n" 245 246 "All rights reserved.\n" … … 263 264 # endif 264 265 "\n", 266 RTBldCfgVersion(), 265 267 mode.toLatin1().constData(), 266 268 dflt.toLatin1().constData());
Note:
See TracChangeset
for help on using the changeset viewer.