diff options
Diffstat (limited to 'plugins/IEView/src/TextToken.h')
-rw-r--r-- | plugins/IEView/src/TextToken.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/IEView/src/TextToken.h b/plugins/IEView/src/TextToken.h index 7e5ef3260c..8cc048e18a 100644 --- a/plugins/IEView/src/TextToken.h +++ b/plugins/IEView/src/TextToken.h @@ -25,15 +25,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. class TextToken {
private:
int type;
- bool end;
- int tag;
- DWORD value;
+ bool end = false;
+ int tag = 0;
+ DWORD value = 0;
wchar_t *wtext;
char *text;
- wchar_t *wlink;
- char *link;
- TextToken *next;
- static TextToken* tokenizeBBCodes(const wchar_t *text, int len);
+ wchar_t *wlink = nullptr;
+ char *link = nullptr;
+ TextToken *next = nullptr;
+ static TextToken* tokenizeBBCodes(const wchar_t *text, int len);
public:
enum TOKENS {
END = 0,
|