diff options
author | Montel Laurent <[email protected]> | 2013-02-11 10:30:08 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2013-02-11 11:02:56 +0100 |
commit | 6230873a658d19e2d8672b67fe35b24fe9466214 (patch) | |
tree | 866a37dd464162852423b27a977edb2b8b5b9815 /src/tools/qdoc/qmlcodeparser.cpp | |
parent | 0114a99bad161fb0e8de5a384e7e13c9a79f8c98 (diff) |
Fix initialize variables
Change-Id: Iaebd03bebf38cddf84f163703e2820925b69c3d9
Reviewed-by: David Faure (KDE) <[email protected]>
Diffstat (limited to 'src/tools/qdoc/qmlcodeparser.cpp')
-rw-r--r-- | src/tools/qdoc/qmlcodeparser.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/qdoc/qmlcodeparser.cpp b/src/tools/qdoc/qmlcodeparser.cpp index 02ab4b07fba..c86982eb957 100644 --- a/src/tools/qdoc/qmlcodeparser.cpp +++ b/src/tools/qdoc/qmlcodeparser.cpp @@ -86,6 +86,8 @@ QT_BEGIN_NAMESPACE Constructs the QML code parser. */ QmlCodeParser::QmlCodeParser() + : lexer( 0 ), + parser( 0 ) { } |