diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-12-15 16:34:37 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-12-15 16:34:37 +0000 |
commit | 54ecbb3cf0ddb2576292d0b1714f56cd765ea292 (patch) | |
tree | c2646e421846bb51094ba52735bebe65dd32f02e /plugins/IEView/src/TextToken.h | |
parent | e16d8a339254b1e55bfffeb8e88bbf5990686dcf (diff) |
IEView: changed warning lavel to w4
git-svn-id: http://svn.miranda-ng.org/main/trunk@11438 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView/src/TextToken.h')
-rw-r--r-- | plugins/IEView/src/TextToken.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/IEView/src/TextToken.h b/plugins/IEView/src/TextToken.h index 68e607cd69..3789ce9350 100644 --- a/plugins/IEView/src/TextToken.h +++ b/plugins/IEView/src/TextToken.h @@ -36,7 +36,7 @@ private: static TextToken* tokenizeBBCodes(const wchar_t *text, int len);
public:
enum TOKENS {
- END = 0,
+ END = 0,
TEXT,
LINK,
WWWLINK,
@@ -73,12 +73,12 @@ public: void setEnd(bool);
TextToken * getNext();
void setNext(TextToken *);
-// void toString(char **str, int *sizeAlloced);
+ // void toString(char **str, int *sizeAlloced);
void toString(wchar_t **str, int *sizeAlloced);
-// static char * htmlEncode(const char *str);
-// static char * urlEncode2(const char *str);
-// static TextToken* tokenizeLinks(const char *text);
-// static TextToken* tokenizeSmileys(const char *proto, const char *text);
+ // static char * htmlEncode(const char *str);
+ // static char * urlEncode2(const char *str);
+ // static TextToken* tokenizeLinks(const char *text);
+ // static TextToken* tokenizeSmileys(const char *proto, const char *text);
// UNICODE
wchar_t * htmlEncode(const wchar_t *str);
static TextToken* tokenizeLinks(const wchar_t *wtext);
|