- Timestamp:
- Jun 9, 2010 2:10:31 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/vm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsDisplay.cpp
r29947 r30124 162 162 findText (vboxGlobal().toString (vrdp.GetAuthType()))); 163 163 mLeVRDPTimeout->setText (QString::number (vrdp.GetAuthTimeout())); 164 mCbMultipleConn->setChecked(vrdp.GetAllowMultiConnection()); 164 165 } 165 166 else … … 194 195 vrdp.SetAuthType (vboxGlobal().toVRDPAuthType (mCbVRDPMethod->currentText())); 195 196 vrdp.SetAuthTimeout (mLeVRDPTimeout->text().toULong()); 197 vrdp.SetAllowMultiConnection(mCbMultipleConn->isChecked()); 196 198 } 197 199 } … … 265 267 setTabOrder (mLeVRDPPort, mCbVRDPMethod); 266 268 setTabOrder (mCbVRDPMethod, mLeVRDPTimeout); 269 setTabOrder (mLeVRDPTimeout, mCbMultipleConn); 267 270 } 268 271 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/vm/VBoxVMSettingsDisplay.ui
r29972 r30124 243 243 </layout> 244 244 </item> 245 245 <item row="4" column="0"> 246 246 <widget class="QLabel" name="mLbOptions"> 247 247 <property name="text"> … … 427 427 <property name="whatsThis"> 428 428 <string>Specifies the timeout for guest authentication, in milliseconds.</string> 429 </property> 430 </widget> 431 </item> 432 <item row="4" column="1"> 433 <widget class="QLabel" name="mLbOptions2"> 434 <property name="text"> 435 <string>Extended Features:</string> 436 </property> 437 <property name="alignment"> 438 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> 439 </property> 440 </widget> 441 </item> 442 <item row="4" column="2"> 443 <widget class="QCheckBox" name="mCbMultipleConn"> 444 <property name="sizePolicy"> 445 <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed"> 446 <horstretch>0</horstretch> 447 <verstretch>0</verstretch> 448 </sizepolicy> 449 </property> 450 <property name="whatsThis"> 451 <string>Specifies whether multiple simultaneous connections to the VM are permitted.</string> 452 </property> 453 <property name="text"> 454 <string>Allow Multiple Connections</string> 429 455 </property> 430 456 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.