Changeset 25679 in vbox
- Timestamp:
- Jan 7, 2010 10:52:28 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56396
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/vm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsGeneral.cpp
r25177 r25679 86 86 mCbToolBarAlignment->setEnabled (mCbShowToolBar->isChecked()); 87 87 88 /* RTC use UTC */ 89 bool rtcUseUTC = mMachine.GetRTCUseUTC (); 90 mCbTCUseUTC->setChecked (rtcUseUTC); 91 88 92 /* Snapshot folder */ 89 93 mPsSnapshot->setPath (aMachine.GetSnapshotFolder()); … … 120 124 mMachine.SetExtraData (VBoxDefs::GUI_MiniToolBarAlignment, 121 125 mCbToolBarAlignment->isChecked() ? "top" : "bottom"); 126 127 /* RTC reports time in UTC */ 128 mMachine.SetRTCUseUTC (mCbTCUseUTC->isChecked()); 122 129 123 130 /* Saved state folder */ -
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsGeneral.ui
r25196 r25679 241 241 </widget> 242 242 </item> 243 <item row="5" column="0" > 244 <widget class="QLabel" name="mLbRTCUseUTC" > 245 <property name="text" > 246 <string>Hardware clock:</string> 247 </property> 248 <property name="alignment" > 249 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> 250 </property> 251 </widget> 252 </item> 253 <item row="5" column="1" > 254 <widget class="QCheckBox" name="mCbTCUseUTC" > 255 <property name="sizePolicy" > 256 <sizepolicy vsizetype="Fixed" hsizetype="MinimumExpanding" > 257 <horstretch>0</horstretch> 258 <verstretch>0</verstretch> 259 </sizepolicy> 260 </property> 261 <property name="whatsThis" > 262 <string>If checked, the RTC device will report the time in UTC, otherwise in local (host) time. Unix usually expects the hardware clock to be set in UTC.</string> 263 </property> 264 <property name="text" > 265 <string>Report &UTC time</string> 266 </property> 267 <property name="checked" > 268 <bool>false</bool> 269 </property> 270 </widget> 271 </item> 243 272 </layout> 244 273 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.