Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
ea2054a9
Commit
ea2054a9
authored
Jun 04, 2010
by
Erik Verbruggen
Browse files
Fixed uninitialized members.
parent
66a3bbe3
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/libs/qmljs/qmljsinterpreter.cpp
View file @
ea2054a9
...
...
@@ -331,6 +331,7 @@ class QmlXmlReader
public:
QmlXmlReader
(
QIODevice
*
dev
)
:
_xml
(
dev
)
,
_objects
(
0
)
{}
bool
operator
()(
QMap
<
QString
,
FakeMetaObject
*>
*
objects
)
{
...
...
src/shared/cplusplus/Control.cpp
View file @
ea2054a9
...
...
@@ -235,9 +235,19 @@ class Control::Data
{
public:
Data
(
Control
*
control
)
:
control
(
control
),
translationUnit
(
0
),
diagnosticClient
(
0
)
:
control
(
control
)
,
translationUnit
(
0
)
,
diagnosticClient
(
0
)
,
deprecatedId
(
0
)
,
unavailableId
(
0
)
,
objcGetterId
(
0
)
,
objcSetterId
(
0
)
,
objcReadwriteId
(
0
)
,
objcReadonlyId
(
0
)
,
objcAssignId
(
0
)
,
objcRetainId
(
0
)
,
objcCopyId
(
0
)
,
objcNonatomicId
(
0
)
{}
~
Data
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment