Changeset 14455 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Nov 21, 2008 1:15:28 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39725
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxGlobalSettings.h
r10219 r14455 47 47 QString languageId; 48 48 QString maxGuestRes; 49 bool trayIconEnabled; 49 50 50 51 friend class VBoxGlobalSettings; … … 61 62 Q_PROPERTY (QString languageId READ languageId WRITE setLanguageId) 62 63 Q_PROPERTY (QString maxGuestRes READ maxGuestRes WRITE setMaxGuestRes) 64 Q_PROPERTY (bool trayIconEnabled READ trayIconEnabled WRITE setTrayIconEnabled) 63 65 64 66 public: … … 103 105 } 104 106 107 bool trayIconEnabled() const { return data()->trayIconEnabled; } 108 void setTrayIconEnabled (bool enabled) { 109 mData()->trayIconEnabled = enabled; 110 } 111 105 112 // 106 113
Note:
See TracChangeset
for help on using the changeset viewer.