Changeset 9107 in vbox for trunk/src/VBox
- Timestamp:
- May 26, 2008 9:07:53 AM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxGlobal.h
r9056 r9107 459 459 /* VirtualBox helpers */ 460 460 461 #if def Q_WS_X11461 #if defined(Q_WS_X11) && !defined(VBOX_OSE) 462 462 bool showVirtualBoxLicense(); 463 463 #endif -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r9105 r9107 47 47 48 48 #ifdef Q_WS_X11 49 #include "VBoxLicenseViewer.h" 49 #ifndef VBOX_OSE 50 # include "VBoxLicenseViewer.h" 51 #endif /* VBOX_OSE */ 50 52 51 53 #include <QTextBrowser> … … 1848 1850 } 1849 1851 1850 #if def Q_WS_X111852 #if defined(Q_WS_X11) && !defined(VBOX_OSE) 1851 1853 bool VBoxGlobal::showVirtualBoxLicense() 1852 1854 { … … 1894 1896 return result; 1895 1897 } 1896 #endif 1898 #endif /* defined(Q_WS_X11) && !defined(VBOX_OSE) */ 1897 1899 1898 1900 /**
Note:
See TracChangeset
for help on using the changeset viewer.