Changeset 47210 in vbox
- Timestamp:
- Jul 17, 2013 12:11:10 PM (12 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIPopupCenter.cpp
r47209 r47210 518 518 } 519 519 520 void UIPopupCenter:: remindAboutWrongColorDepth(QWidget *pParent, ulong uRealBPP, ulong uWantedBPP)520 void UIPopupCenter::updatePopupAboutWrongColorDepth(QWidget *pParent, ulong uRealBPP, ulong uWantedBPP) 521 521 { 522 522 alert(pParent, "remindAboutWrongColorDepth", … … 533 533 } 534 534 535 void UIPopupCenter::recallPopupAboutWrongColorDepth(QWidget *pParent) 536 { 537 recall(pParent, "remindAboutWrongColorDepth"); 538 } 539 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIPopupCenter.h
r47209 r47210 105 105 void remindAboutPausedVMInput(QWidget *pParent); 106 106 void remindAboutGuestAdditionsAreNotActive(QWidget *pParent); 107 void remindAboutWrongColorDepth(QWidget *pParent, ulong uRealBPP, ulong uWantedBPP); 107 void updatePopupAboutWrongColorDepth(QWidget *pParent, ulong uRealBPP, ulong uWantedBPP); 108 void recallPopupAboutWrongColorDepth(QWidget *pParent); 108 109 109 110 private slots: -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBufferQImage.cpp
r47098 r47210 130 130 /* Remind if requested: */ 131 131 if (bRemind) 132 popupCenter().remindAboutWrongColorDepth(m_pMachineView->machineWindow(), 133 pEvent->bitsPerPixel(), 32); 132 popupCenter().updatePopupAboutWrongColorDepth(m_pMachineView->machineWindow(), 133 pEvent->bitsPerPixel(), 32); 134 else 135 popupCenter().recallPopupAboutWrongColorDepth(m_pMachineView->machineWindow()); 134 136 } 135 137 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBufferQuartz2D.cpp
r47098 r47210 211 211 212 212 if (remind) 213 popupCenter().remindAboutWrongColorDepth(m_pMachineView->machineWindow(), 214 aEvent->bitsPerPixel(), 32); 213 popupCenter().updatePopupAboutWrongColorDepth(m_pMachineView->machineWindow(), 214 aEvent->bitsPerPixel(), 32); 215 else 216 popupCenter().recallPopupAboutWrongColorDepth(m_pMachineView->machineWindow()); 215 217 } 216 218
Note:
See TracChangeset
for help on using the changeset viewer.