- Timestamp:
- Mar 25, 2024 2:34:19 PM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 162432
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/editors
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UISerialSettingsEditor.cpp ¶
r103771 r104043 210 210 if (m_pLineEditIRQ) 211 211 m_pLineEditIRQ->setToolTip(tr("Holds the IRQ number of this serial port. This should be a whole number between " 212 " <tt>0</tt> and <tt>255</tt>. Values greater than <tt>15</tt>may only be used if the "212 "'0' and '255'. Values greater than '15' may only be used if the " 213 213 "I/O APIC setting is enabled for this virtual machine.")); 214 214 if (m_pLabelIOAddress) … … 216 216 if (m_pLineEditIOAddress) 217 217 m_pLineEditIOAddress->setToolTip(tr("Holds the base I/O port address of this serial port. Valid values are integer numbers " 218 "in range from <tt>0</tt> to <tt>0xFFFF</tt>."));218 "in range from '0' to '0xFFFF'.")); 219 219 if (m_pLabelMode) 220 220 m_pLabelMode->setText(tr("Port &Mode:")); -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIUSBFilterDetailsEditor.cpp ¶
r103167 r104043 184 184 m_pLabelVendorID->setText(tr("&Vendor ID:")); 185 185 if (m_pEditorVendorID) 186 m_pEditorVendorID->setToolTip(tr("Holds the vendor ID filter. The <i>exact match</i> string format is <tt>XXXX</tt>"187 "where <tt>X</tt>is a hexadecimal digit. An empty string will match any value."));186 m_pEditorVendorID->setToolTip(tr("Holds the vendor ID filter. The exact match string format is 'XXXX' " 187 "where 'X' is a hexadecimal digit. An empty string will match any value.")); 188 188 189 189 if (m_pLabelProductID) 190 190 m_pLabelProductID->setText(tr("&Product ID:")); 191 191 if (m_pEditorProductID) 192 m_pEditorProductID->setToolTip(tr("Holds the product ID filter. The <i>exact match</i> string format is <tt>XXXX</tt>"193 "where <tt>X</tt>is a hexadecimal digit. An empty string will match any value."));192 m_pEditorProductID->setToolTip(tr("Holds the product ID filter. The exact match string format is 'XXXX' " 193 "where 'X' is a hexadecimal digit. An empty string will match any value.")); 194 194 195 195 if (m_pLabelRevision) 196 196 m_pLabelRevision->setText(tr("&Revision:")); 197 197 if (m_pEditorRevision) 198 m_pEditorRevision->setToolTip(tr("Holds the revision number filter. The <i>exact match</i>string format is "199 " <tt>IIFF</tt> where <tt>I</tt> is a decimal digit of the integer part and <tt>F</tt>"198 m_pEditorRevision->setToolTip(tr("Holds the revision number filter. The exact match string format is " 199 "'IIFF' where 'I' is a decimal digit of the integer part and 'F' " 200 200 "is a decimal digit of the fractional part. An empty string will match any value.")); 201 201 … … 203 203 m_pLabelManufacturer->setText(tr("&Manufacturer:")); 204 204 if (m_pEditorManufacturer) 205 m_pEditorManufacturer->setToolTip(tr("Holds the manufacturer filter as an <i>exact match</i>string. An empty string "205 m_pEditorManufacturer->setToolTip(tr("Holds the manufacturer filter as an exact match string. An empty string " 206 206 "will match any value.")); 207 207 … … 209 209 m_pLabelProduct->setText(tr("Pro&duct:")); 210 210 if (m_pEditorProduct) 211 m_pEditorProduct->setToolTip(tr("Holds the product name filter as an <i>exact match</i>string. An empty string will "211 m_pEditorProduct->setToolTip(tr("Holds the product name filter as an exact match string. An empty string will " 212 212 "match any value.")); 213 213 … … 215 215 m_pLabelSerialNo->setText(tr("&Serial No.:")); 216 216 if (m_pEditorSerialNo) 217 m_pEditorSerialNo->setToolTip(tr("Holds the serial number filter as an <i>exact match</i>string. An empty string will "217 m_pEditorSerialNo->setToolTip(tr("Holds the serial number filter as an exact match string. An empty string will " 218 218 "match any value.")); 219 219 … … 221 221 m_pLabelPort->setText(tr("Por&t:")); 222 222 if (m_pEditorPort) 223 m_pEditorPort->setToolTip(tr("Holds the host USB port filter as an <i>exact match</i>string. An empty string will match "223 m_pEditorPort->setToolTip(tr("Holds the host USB port filter as an exact match string. An empty string will match " 224 224 "any value.")); 225 225
Note:
See TracChangeset
for help on using the changeset viewer.