Changeset 11142 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 5, 2008 6:11:17 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxConsoleWnd.h
r11135 r11142 297 297 QMap <QAction *, CHostFloppyDrive> hostFloppyMap; 298 298 299 QRect mNormalGeo metry;299 QRect mNormalGeo; 300 300 QSize prev_min_size; 301 301 -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxConsoleWnd.cpp
r11135 r11142 733 733 y = ar.top(); 734 734 735 mNormalGeo metry= QRect (x, y, w, h);735 mNormalGeo = QRect (x, y, w, h); 736 736 737 737 setGeometry (x, y, w, h); 738 738 } 739 739 else 740 mNormalGeo metry= QRect();740 mNormalGeo = QRect(); 741 741 742 742 /* Normalize to the optimal size */ … … 1009 1009 CMachine machine = csession.GetMachine(); 1010 1010 QString winPos = QString ("%1,%2,%3,%4") 1011 .arg (mNormalGeo metry.x()).arg (mNormalGeometry.y())1012 .arg (mNormalGeo metry.width()).arg (mNormalGeometry.height());1011 .arg (mNormalGeo.x()).arg (mNormalGeo.y()) 1012 .arg (mNormalGeo.width()).arg (mNormalGeo.height()); 1013 1013 if (isMaximized() || (mIsFullscreen && was_max) 1014 1014 || (mIsSeamless && was_max)) … … 1132 1132 !isTrueFullscreen() && !isTrueSeamless()) 1133 1133 { 1134 mNormalGeo metry.setSize (re->size());1134 mNormalGeo.setSize (re->size()); 1135 1135 #ifdef VBOX_WITH_DEBUGGER_GUI 1136 1136 dbgAdjustRelativePos(); … … 1152 1152 if (!isMaximized() && !isTrueFullscreen() && !isTrueSeamless()) 1153 1153 { 1154 mNormalGeo metry.moveTo (geometry().x(), geometry().y());1154 mNormalGeo.moveTo (geometry().x(), geometry().y()); 1155 1155 #ifdef VBOX_WITH_DEBUGGER_GUI 1156 1156 dbgAdjustRelativePos();
Note:
See TracChangeset
for help on using the changeset viewer.