- Timestamp:
- Oct 1, 2021 10:51:42 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 147199
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIVersion.cpp
r82968 r91509 51 51 if (fullVersionInfo.size() > 1) 52 52 m_strPostfix = fullVersionInfo.at(1); 53 }54 55 UIVersion &UIVersion::operator=(const UIVersion &another)56 {57 m_x = another.x();58 m_y = another.y();59 m_z = another.z();60 m_strPostfix = another.postfix();61 return *this;62 53 } 63 54 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIVersion.h
r82968 r91509 34 34 /** Constructs object based on parsed @a strFullVersionInfo. */ 35 35 UIVersion(const QString &strFullVersionInfo); 36 37 /** Assigns this object with value of @a another. */38 UIVersion &operator=(const UIVersion &another);39 36 40 37 /** Returns whether this object is valid. */ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPortForwardingTable.h
r87432 r91509 77 77 /** Constructs port data based on @a uValue. */ 78 78 PortData(ushort uValue) : m_uValue(uValue) {} 79 /** Constructs port data based on @a other port data value. */80 PortData(const PortData &other) : m_uValue(other.value()) {}81 79 82 80 /** Returns whether this port data is equal to @a another. */
Note:
See TracChangeset
for help on using the changeset viewer.