Changeset 5094 in vbox for trunk/src/VBox/Frontends/VirtualBox/include/VBoxGlobal.h
- Timestamp:
- Sep 28, 2007 1:13:22 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxGlobal.h
r5078 r5094 154 154 static VBoxGlobal &instance(); 155 155 156 bool isValid() { return valid; }156 bool isValid() { return mValid; } 157 157 158 158 QString versionString() { return verString; } 159 159 160 CVirtualBox virtualBox() const { return vbox; }160 CVirtualBox virtualBox() const { return mVBox; } 161 161 162 162 const VBoxGlobalSettings &settings() const { return gset; } … … 526 526 void init(); 527 527 528 bool valid;529 530 CVirtualBox vbox;528 bool mValid; 529 530 CVirtualBox mVBox; 531 531 532 532 VBoxGlobalSettings gset; 533 533 534 VBoxSelectorWnd *selector_wnd; 535 VBoxConsoleWnd *console_wnd; 536 534 VBoxSelectorWnd *mSelectorWnd; 535 VBoxConsoleWnd *mConsoleWnd; 536 537 #ifdef VBOX_WITH_REGISTRATION 537 538 VBoxRegistrationDlg *mRegDlg; 539 #endif 538 540 539 541 QUuid vmUuid;
Note:
See TracChangeset
for help on using the changeset viewer.