Changeset 43983 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Nov 28, 2012 1:48:00 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82357
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetails.cpp
r43936 r43983 104 104 /* Setup details-view connections: */ 105 105 connect(m_pDetailsView, SIGNAL(sigResized()), 106 m_pDetailsModel, SLOT(sltHandleViewResize d()));106 m_pDetailsModel, SLOT(sltHandleViewResize())); 107 107 } 108 108 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsModel.cpp
r43982 r43983 96 96 } 97 97 98 void UIGDetailsModel::sltHandleViewResize d()98 void UIGDetailsModel::sltHandleViewResize() 99 99 { 100 100 /* Relayout: */ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsModel.h
r43982 r43983 75 75 76 76 /* Handler: Details-view stuff: */ 77 void sltHandleViewResize d();77 void sltHandleViewResize(); 78 78 79 79 /* Handlers: Element-items stuff: */ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsSet.cpp
r42906 r43983 522 522 if (fVisible && !pElement->isVisible()) 523 523 { 524 /* Show the element: */ 524 525 pElement->show(); 526 /* Update layout: */ 525 527 model()->updateLayout(); 526 528 } … … 528 530 else if (!fVisible && pElement->isVisible()) 529 531 { 532 /* Hide the element: */ 530 533 pElement->hide(); 534 /* Update layout: */ 531 535 model()->updateLayout(); 532 536 }
Note:
See TracChangeset
for help on using the changeset viewer.