diff options
author | slotwin <slotwin@users.noreply.github.com> | 2014-05-31 14:44:46 +0000 |
---|---|---|
committer | slotwin <slotwin@users.noreply.github.com> | 2014-05-31 14:44:46 +0000 |
commit | 5552d1c8922afbcf4d8b60eea6cda27de6b6d08d (patch) | |
tree | 73c2f07620bfb26d51a1cad8037bbbc6d88c5acd /plugins/MyDetails/src/data.h | |
parent | abe57dd9c571cc80cf50aad3436e4d6f3cf421a2 (diff) |
MyDetails: code cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@9378 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MyDetails/src/data.h')
-rw-r--r-- | plugins/MyDetails/src/data.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/MyDetails/src/data.h b/plugins/MyDetails/src/data.h index f2ab3e555a..53bc6ade9d 100644 --- a/plugins/MyDetails/src/data.h +++ b/plugins/MyDetails/src/data.h @@ -74,7 +74,7 @@ public: //void SetAvatar(const char *file_name, HBITMAP hBmp);
bool CanGetNick();
- TCHAR * GetNick(); // Copy to cache and return a copy
+ TCHAR *GetNick(); // Copy to cache and return a copy
int GetNickMaxLength();
bool CanSetNick();
void SetNick(const TCHAR *nick);
@@ -82,11 +82,11 @@ public: bool CanGetListeningTo();
bool CanSetListeningTo();
bool ListeningToEnabled();
- TCHAR * GetListeningTo(); // Copy to cache and return a copy
+ TCHAR *GetListeningTo(); // Copy to cache and return a copy
bool CanGetStatusMsg();
bool CanGetStatusMsg(int aStatus);
- TCHAR * GetStatusMsg(); // Copy to cache and return a copy
+ TCHAR *GetStatusMsg(); // Copy to cache and return a copy
void GetStatusMsg(int aStatus, TCHAR *msg, size_t msg_size);
bool CanSetStatusMsg();
bool CanSetStatusMsg(int aStatus);
@@ -116,8 +116,8 @@ public: int GetSize();
void Add(Protocol *p);
- Protocol* Get(int i);
- Protocol* Get(const char *name);
+ Protocol *Get(int i);
+ Protocol *Get(const char *name);
void GetAvatars();
bool CanSetAvatars();
@@ -138,8 +138,8 @@ public: void GetDefaultNick(); // Copy to cache
void GetDefaultAvatar(); // Copy to cache
- TCHAR* GetDefaultStatusMsg(); // Copy to cache
- TCHAR* GetDefaultStatusMsg(int status);
+ TCHAR *GetDefaultStatusMsg(); // Copy to cache
+ TCHAR *GetDefaultStatusMsg(int status);
bool CanSetListeningTo();
bool ListeningToEnabled();
|