Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Q
qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tobias Hunger
qt-creator
Commits
ea2054a9
Commit
ea2054a9
authored
Jun 04, 2010
by
Erik Verbruggen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed uninitialized members.
parent
66a3bbe3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
src/libs/qmljs/qmljsinterpreter.cpp
src/libs/qmljs/qmljsinterpreter.cpp
+1
-0
src/shared/cplusplus/Control.cpp
src/shared/cplusplus/Control.cpp
+13
-3
No files found.
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
Markdown
is supported
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