Changeset 86053 in vbox
- Timestamp:
- Sep 7, 2020 5:58:16 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 140266
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.h
r86046 r86053 117 117 118 118 /** Performs window geometry normalization according to guest-size and host's available geometry. 119 * @param fAdjustPosition Determines whether is it necessary to adjust position as well. */ 119 * @param fAdjustPosition Determines whether is it necessary to adjust position as well. 120 * @param fResizeToGuestDisplay determines if is it necessary to resize the window to fit to guest display size. */ 120 121 virtual void normalizeGeometry(bool fAdjustPosition, bool fResizeToGuestDisplay) /* override */; 121 122 … … 145 146 146 147 #endif /* !FEQT_INCLUDED_SRC_runtime_normal_UIMachineWindowNormal_h */ 147 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineWindowScale.cpp
r84701 r86053 176 176 } 177 177 178 void UIMachineWindowScale::normalizeGeometry(bool fAdjustPosition) 179 { 178 void UIMachineWindowScale::normalizeGeometry(bool fAdjustPosition, bool fResizeToGuestDisplay) 179 { 180 Q_UNUSED(fResizeToGuestDisplay); 180 181 /* Skip if maximized: */ 181 182 if (isMaximized()) … … 256 257 #endif /* !VBOX_WS_MAC */ 257 258 } 258 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineWindowScale.h
r82968 r86053 61 61 62 62 /** Performs window geometry normalization according to guest-size and host's available geometry. 63 * @param fAdjustPosition Determines whether is it necessary to adjust position as well. */ 64 virtual void normalizeGeometry(bool fAdjustPosition) /* override */; 63 * @param fAdjustPosition Determines whether is it necessary to adjust position as well. 64 * @param fResizeToGuestDisplay determines if is it necessary to resize the window to fit to guest display size. */ 65 virtual void normalizeGeometry(bool fAdjustPosition, bool fResizeToGuestDisplay) /* override */; 65 66 66 67 /** Common @a pEvent handler. */ … … 78 79 79 80 #endif /* !FEQT_INCLUDED_SRC_runtime_scale_UIMachineWindowScale_h */ 80
Note:
See TracChangeset
for help on using the changeset viewer.