diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-05 22:03:00 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-05 22:03:00 +0300 |
commit | 9000595b551d09cbaf14cbfd7b49aa5aca3d9a90 (patch) | |
tree | ea5e3f6abb32c518f7f82b10fbcc9ca67e70e13a /include/m_database.h | |
parent | 48dd585af3311ef3e51bf081c37e61b56199a455 (diff) |
proper fix for UINs in auth dialogs
Diffstat (limited to 'include/m_database.h')
-rw-r--r-- | include/m_database.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/m_database.h b/include/m_database.h index 23926eba9b..f4d7b1ea46 100644 --- a/include/m_database.h +++ b/include/m_database.h @@ -680,7 +680,9 @@ public: __forceinline const char* get_lastName() const { return m_szLastName; }
__forceinline const char* get_email() const { return m_szEmail; }
__forceinline const char* get_reason() const { return m_szReason; }
- __forceinline DWORD get_uin() const { return m_dwUin; }
+
+ __forceinline DWORD get_uin() const { return m_dwUin; }
+ __forceinline void set_uin(DWORD dwValue) { m_dwUin = dwValue; }
};
#endif // M_DATABASE_H__
|