diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-19 08:02:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-19 08:02:41 +0000 |
commit | 08dc125be616458112368e7154b29d5d23f1126e (patch) | |
tree | 1c27ef9b8525f45913c19bb6f4c18a31b6593749 /plugins/MyDetails/data.h | |
parent | a63798c1b60eeb77352323ad4545630cdc5458f2 (diff) |
Unicode in status message plugins
git-svn-id: http://svn.miranda-ng.org/main/trunk@1033 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MyDetails/data.h')
-rw-r--r-- | plugins/MyDetails/data.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/MyDetails/data.h b/plugins/MyDetails/data.h index 4ae35dbce7..3ae7b024e5 100644 --- a/plugins/MyDetails/data.h +++ b/plugins/MyDetails/data.h @@ -39,7 +39,7 @@ protected: public:
// Name of protocol
char name[256];
- char description[256];
+ TCHAR description[256];
TCHAR nickname[256];
TCHAR status_name[256];
TCHAR *custom_status_name;
@@ -119,8 +119,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();
@@ -135,14 +135,14 @@ public: void GetStatusMsgs();
void GetStatuses();
- int GetGlobalStatus();
+ int GetGlobalStatus();
bool CanSetStatusMsgPerProtocol();
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();
|