Changeset 30142 in vbox
- Timestamp:
- Jun 10, 2010 8:25:16 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62549
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/darwin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VBoxCocoaSpecialControls.h
r29377 r30142 44 44 45 45 VBoxCocoaButton (CocoaButtonType aType, QWidget *aParent = 0); 46 ~VBoxCocoaButton(); 47 46 48 QSize sizeHint() const; 47 49 … … 68 70 public: 69 71 VBoxCocoaSegmentedButton (int aCount, QWidget *aParent = 0); 72 ~VBoxCocoaSegmentedButton(); 73 70 74 QSize sizeHint() const; 71 75 … … 94 98 public: 95 99 VBoxCocoaSearchField (QWidget* aParent = 0); 100 ~VBoxCocoaSearchField(); 101 96 102 QSize sizeHint() const; 97 103 -
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VBoxCocoaSpecialControls.mm
r29377 r30142 254 254 } 255 255 256 VBoxCocoaButton::~VBoxCocoaButton() 257 { 258 [[mNativeRef target] release]; 259 [mNativeRef release]; 260 } 261 256 262 QSize VBoxCocoaButton::sizeHint() const 257 263 { … … 307 313 setCocoaView (mNativeRef); 308 314 315 } 316 317 VBoxCocoaSegmentedButton::~VBoxCocoaSegmentedButton() 318 { 319 [[mNativeRef target] release]; 320 [mNativeRef release]; 309 321 } 310 322 … … 378 390 } 379 391 392 VBoxCocoaSearchField::~VBoxCocoaSearchField() 393 { 394 [[mNativeRef delegate] release]; 395 [mNativeRef release]; 396 } 397 380 398 QSize VBoxCocoaSearchField::sizeHint() const 381 399 {
Note:
See TracChangeset
for help on using the changeset viewer.