Changeset 24600 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 11, 2009 5:18:45 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxVMSettingsUSB.h
r10728 r24600 83 83 void mdnClicked(); 84 84 void showContextMenu (const QPoint &aPos); 85 void markSettingsChanged(); 85 86 86 87 private: -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMSettingsUSB.cpp
r23962 r24600 107 107 this, SLOT (showContextMenu (const QPoint &))); 108 108 connect (mTwFilters, SIGNAL (itemDoubleClicked (QTreeWidgetItem *, int)), 109 this, SLOT (edtClicked ())); 109 this, SLOT (edtClicked())); 110 connect (mTwFilters, SIGNAL (itemChanged (QTreeWidgetItem *, int)), 111 this, SLOT (markSettingsChanged())); 110 112 111 113 mUSBDevicesMenu = new VBoxUSBMenu (this); … … 147 149 mTwFilters->setCurrentItem (mTwFilters->topLevelItem (0)); 148 150 currentChanged (mTwFilters->currentItem()); 151 152 mUSBFilterListModified = false; 149 153 } 150 154 … … 192 196 mTwFilters->setCurrentItem (mTwFilters->topLevelItem (0)); 193 197 currentChanged (mTwFilters->currentItem()); 198 199 mUSBFilterListModified = false; 194 200 } 195 201 … … 542 548 } 543 549 550 void VBoxVMSettingsUSB::markSettingsChanged() 551 { 552 mUSBFilterListModified = true; 553 } 554 544 555 void VBoxVMSettingsUSB::addUSBFilter (const CUSBDeviceFilter &aFilter, 545 556 bool isNew)
Note:
See TracChangeset
for help on using the changeset viewer.