VirtualBox

Changeset 55266 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Apr 15, 2015 6:48:56 AM (10 years ago)
Author:
vboxsync
Message:

FE/Qt: VM Settings dialog: Serial Ports page: Logic and NLS fixes for r99572.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSerial.cpp

    r55259 r55266  
    115115    mLeIOPort->setText("0x" + QString::number(portData.m_uIOBase, 16).toUpper());
    116116    mCbMode->setCurrentIndex(mCbMode->findText(gpConverter->toString(portData.m_hostMode)));
    117     mCbPipe->setChecked(portData.m_fServer);
     117    mCbPipe->setChecked(!portData.m_fServer);
    118118    mLePath->setText(portData.m_strPath);
    119119
     
    131131    portData.m_uIRQ = mLeIRQ->text().toULong(NULL, 0);
    132132    portData.m_uIOBase = mLeIOPort->text().toULong (NULL, 0);
    133     portData.m_fServer = mCbPipe->isChecked();
     133    portData.m_fServer = !mCbPipe->isChecked();
    134134    portData.m_hostMode = gpConverter->fromString<KPortMode>(mCbMode->currentText());
    135135    portData.m_strPath = QDir::toNativeSeparators(mLePath->text());
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSerial.ui

    r55259 r55266  
    177177       <widget class="QCheckBox" name="mCbPipe" >
    178178        <property name="whatsThis" >
    179          <string>If checked, the pipe or socket specified in the &lt;b>Port Path&lt;/b> field will be created by the virtual machine when it starts. Otherwise, the virtual machine will assume that the pipe or socket exists and try to use it.</string>
     179         <string>If checked, the virtual machine will assume that the pipe or socket specified in the &lt;b>Path/Address&lt;/b> field exists and try to use it. Otherwise, the pipe or socket will be created by the virtual machine when it starts.</string>
    180180        </property>
    181181        <property name="text" >
     
    200200       <widget class="QLineEdit" name="mLePath" >
    201201        <property name="whatsThis" >
    202          <string>In &lt;b>Host Pipe&lt;/b> mode: Holds the path to the serial port's pipe on the host, examples:
    203 "\\.\pipe\myvbox" or "/tmp/myvbox", for Windows and UNIX-like systems respectively.
    204 In &lt;b>Host Device&lt;/b> mode: Holds the host serial device name; examples: "COM1" or "/dev/ttyS0".
    205 In &lt;b>Raw file&lt;/b> mode: file-path on the host system, where serial output will be dumped.
    206 In &lt;b>TCP&lt;/b> mode: Holds TCP "port" when in server mode, or "hostname:port" or when in client mode.
    207 </string>
     202         <string>&lt;p>In &lt;b>Host Pipe&lt;/b> mode: Holds the path to the serial port's pipe on the host. Examples: "\\.\pipe\myvbox" or "/tmp/myvbox", for Windows and UNIX-like systems respectively.&lt;/p>&lt;p>In &lt;b>Host Device&lt;/b> mode: Holds the host serial device name. Examples: "COM1" or "/dev/ttyS0".&lt;/p>&lt;p>In &lt;b>Raw File&lt;/b> mode: Holds the file-path on the host system, where the serial output will be dumped.&lt;/p>&lt;p>In &lt;b>TCP&lt;/b> mode: Holds the TCP "port" when in server mode, or "hostname:port" when in client mode.</string>
    208203        </property>
    209204       </widget>
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette