Changeset 49989 in vbox
- Timestamp:
- Dec 19, 2013 4:06:21 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsDisplay.cpp
r48576 r49989 30 30 /* COM includes: */ 31 31 #include "CVRDEServer.h" 32 #include "CExtPackManager.h" 33 #include "CExtPack.h" 32 34 33 35 UIMachineSettingsDisplay::UIMachineSettingsDisplay() … … 389 391 message.first = VBoxGlobal::removeAccelMark(m_pTabWidget->tabText(1)); 390 392 393 #ifdef VBOX_WITH_EXTPACK 394 CExtPack extPack = vboxGlobal().virtualBox().GetExtensionPackManager().Find(GUI_ExtPackName); 395 if (m_pCheckboxRemoteDisplay->isChecked() && (extPack.isNull() || !extPack.GetUsable())) 396 { 397 message.second << tr("Remote Display is currently enabled for this virtual machine. " 398 "However, this requires the <b>%1</b> to be installed. " 399 "Please install the Extension Pack from the VirtualBox download site as " 400 "otherwise your VM will be started with Remote Display disabled.") 401 .arg(GUI_ExtPackName); 402 } 403 #endif 404 391 405 /* Check VRDE server port: */ 392 406 if (m_pEditorRemoteDisplayPort->text().trimmed().isEmpty())
Note:
See TracChangeset
for help on using the changeset viewer.