Changeset 97217 in vbox
- Timestamp:
- Oct 18, 2022 6:58:17 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154193
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/networking/UIUpdateDefs.cpp
r96407 r97217 349 349 { 350 350 return true 351 && (m_ strData == another.data())351 && (m_fCheckEnabled == another.isCheckEnabled()) 352 352 && (m_enmUpdatePeriod == another.updatePeriod()) 353 && (m_date == another.date())354 353 && (m_enmUpdateChannel == another.updateChannel()) 355 && (m_version == another.version())356 354 ; 357 355 } -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIMaximumGuestScreenSizeEditor.cpp
r96407 r97217 53 53 { 54 54 return true 55 && (m_enmPolicy == other.m_enmPolicy) 56 && (m_size == other.m_size) 55 && ( ( m_enmPolicy != MaximumGuestScreenSizePolicy_Fixed 56 && m_enmPolicy == other.m_enmPolicy) 57 || ( m_enmPolicy == MaximumGuestScreenSizePolicy_Fixed 58 && m_enmPolicy == other.m_enmPolicy 59 && m_size == other.m_size)) 57 60 ; 58 61 }
Note:
See TracChangeset
for help on using the changeset viewer.