Changeset 11955 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- Sep 1, 2008 10:23:45 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35840
- Location:
- trunk/src/VBox/Frontends/VirtualBox4/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r11709 r11955 1796 1796 item += QString (sSectionItemTpl) 1797 1797 .arg (tr ("Adapter %1", "details report (network)") 1798 .arg (adapter.GetSlot() ))1798 .arg (adapter.GetSlot() + 1)) 1799 1799 .arg (attType); 1800 1800 ++ rows; … … 1838 1838 item += QString (sSectionItemTpl) 1839 1839 .arg (tr ("Port %1", "details report (serial ports)") 1840 .arg (port.GetSlot() ))1840 .arg (port.GetSlot() + 1)) 1841 1841 .arg (data); 1842 1842 ++ rows; … … 1874 1874 item += QString (sSectionItemTpl) 1875 1875 .arg (tr ("Port %1", "details report (parallel ports)") 1876 .arg (port.GetSlot() ))1876 .arg (port.GetSlot() + 1)) 1877 1877 .arg (data); 1878 1878 ++ rows; -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxVMSettingsNetwork.cpp
r11871 r11955 177 177 { 178 178 pageTitle = VBoxGlobal::tr ("Adapter %1", "network") 179 .arg ( mAdapter.GetSlot());179 .arg (QString ("&%1").arg (mAdapter.GetSlot() + 1)); 180 180 } 181 181 return pageTitle; … … 519 519 mList->setCurrentItem (NULL); 520 520 mList->clearSelection(); 521 #endif 521 #endif 522 522 } 523 523 else -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxVMSettingsParallel.cpp
r10700 r11955 112 112 if (!mPort.isNull()) 113 113 pageTitle = QString (tr ("Port %1", "parallel ports")) 114 .arg ( mPort.GetSlot());114 .arg (QString ("&%1").arg (mPort.GetSlot() + 1)); 115 115 return pageTitle; 116 116 } -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxVMSettingsSerial.cpp
r10699 r11955 126 126 { 127 127 pageTitle = QString (tr ("Port %1", "serial ports")) 128 .arg ( mPort.GetSlot());128 .arg (QString ("&%1").arg (mPort.GetSlot() + 1)); 129 129 } 130 130 return pageTitle;
Note:
See TracChangeset
for help on using the changeset viewer.