Changeset 94738 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/networking/UIUpdateDefs.h
- Timestamp:
- Apr 28, 2022 5:13:37 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151120
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/networking/UIUpdateDefs.h
r94733 r94738 96 96 UpdatePeriodType updatePeriod() const; 97 97 /** Returns update date. */ 98 Q Stringdate() const;99 /** Returns internal update date. */100 Q Date internalDate() const;98 QDate date() const; 99 /** Returns update date as string. */ 100 QString dateToString() const; 101 101 /** Returns update channel. */ 102 102 KUpdateChannel updateChannel() const; … … 124 124 private: 125 125 126 /** Decodes data. */127 void decode();128 /** Encodes data. */129 void encode();130 131 126 /** Holds the populated list of update period options. */ 132 static VBoxUpdateDayList 127 static VBoxUpdateDayList s_days; 133 128 134 129 /** Holds the update data. */ 135 QString 130 QString m_strData; 136 131 /** Holds the update period. */ 137 UpdatePeriodType m_enmUpdatePeriod;132 UpdatePeriodType m_enmUpdatePeriod; 138 133 /** Holds the update date. */ 139 QDate 134 QDate m_date; 140 135 /** Holds the update channel. */ 141 KUpdateChannel 136 KUpdateChannel m_enmUpdateChannel; 142 137 /** Holds the update version. */ 143 UIVersion 138 UIVersion m_version; 144 139 }; 145 140
Note:
See TracChangeset
for help on using the changeset viewer.