summaryrefslogtreecommitdiff
path: root/idl/inc/lex.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/inc/lex.hxx')
-rw-r--r--idl/inc/lex.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/idl/inc/lex.hxx b/idl/inc/lex.hxx
index 2f816358bca8..558d47c2dd1b 100644
--- a/idl/inc/lex.hxx
+++ b/idl/inc/lex.hxx
@@ -101,7 +101,11 @@ public:
};
inline SvToken::SvToken()
- : nType( SVTOKEN_EMPTY ) {}
+ : nLine(0)
+ , nColumn(0)
+ , nType( SVTOKEN_EMPTY )
+{
+}
inline SvToken::SvToken( sal_uLong n )
: nType( SVTOKEN_INTEGER ), nLong( n ) {}