Changeset 3927 in vbox for trunk/src/VBox
- Timestamp:
- Jul 30, 2007 6:24:59 PM (18 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r3925 r3927 3154 3154 QPushButton *pbHelp = new QPushButton (tr ("Help"), this, "pbHelp"); 3155 3155 QSpacerItem *spacer = new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum); 3156 QPushButton *pbOk = new QPushButton (tr (" OK"), this, "pbOk");3156 QPushButton *pbOk = new QPushButton (tr ("&OK"), this, "pbOk"); 3157 3157 QPushButton *pbCancel = new QPushButton (tr ("Cancel"), this, "pbCancel"); 3158 3158 connect (pbHelp, SIGNAL (clicked()), &vboxProblem(), SLOT (showHelpHelpDialog())); 3159 3159 connect (pbOk, SIGNAL (clicked()), this, SLOT (accept())); 3160 3160 connect (pbCancel, SIGNAL (clicked()), this, SLOT (reject())); 3161 pbHelp->setAccel (Qt::Key_F1); 3161 3162 buttonLayout->addWidget (pbHelp); 3162 3163 buttonLayout->addItem (spacer); -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxSharedFoldersSettings.ui
r3802 r3927 124 124 </property> 125 125 <property name="text"> 126 <string>Add</string> 126 <string></string> 127 </property> 128 <property name="accel"> 129 <string>Ins</string> 130 </property> 131 <property name="textLabel"> 132 <string>Add a new shared folder (Ins)</string> 127 133 </property> 128 134 <property name="autoRaise"> … … 141 147 </property> 142 148 <property name="text"> 143 <string>Edit</string> 149 <string></string> 150 </property> 151 <property name="accel"> 152 <string>Space</string> 153 </property> 154 <property name="textLabel"> 155 <string>Edit the selected shared folder (Space)</string> 144 156 </property> 145 157 <property name="autoRaise"> … … 158 170 </property> 159 171 <property name="text"> 160 <string>Remove</string> 172 <string></string> 173 </property> 174 <property name="accel"> 175 <string>Del</string> 176 </property> 177 <property name="textLabel"> 178 <string>Remove the selected shared folder (Del)</string> 161 179 </property> 162 180 <property name="autoRaise"> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxSharedFoldersSettings.ui.h
r3920 r3927 308 308 tbRemove->setIconSet (VBoxGlobal::iconSet ("revome_shared_folder_16px.png", 309 309 "revome_shared_folder_disabled_16px.png")); 310 QToolTip::add (tbAdd, tr ("Add a new shared folder"));311 QToolTip::add (tbEdit, tr ("Edit the selected shared folder"));312 QToolTip::add (tbRemove, tr ("Remove the selected shared folder"));313 310 connect (tbAdd, SIGNAL (clicked()), this, SLOT (tbAddPressed())); 314 311 connect (tbEdit, SIGNAL (clicked()), this, SLOT (tbEditPressed()));
Note:
See TracChangeset
for help on using the changeset viewer.