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
0680bd9b
Commit
0680bd9b
authored
Jan 07, 2011
by
hjk
Browse files
classview: add a member initialization
parent
b9fb6f4b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/classview/classviewmanager.cpp
View file @
0680bd9b
...
...
@@ -60,12 +60,13 @@ namespace Internal {
/*!
\struct ManagerPrivate
\internal
\brief Private class data for \a Manager
\sa Manager
*/
struct
ManagerPrivate
{
ManagerPrivate
()
:
state
(
false
)
{}
ManagerPrivate
()
:
state
(
false
)
,
disableCodeParser
(
false
)
{}
//! instance
static
Manager
*
instance
;
...
...
@@ -76,15 +77,15 @@ struct ManagerPrivate
//! State mutex
QMutex
mutexState
;
//! Internal manager state. \sa Manager::state
bool
state
;
//! code state/changes parser
Parser
parser
;
//! separate thread for the parser
QThread
parserThread
;
//! Internal manager state. \sa Manager::state
bool
state
;
//! there is some massive operation ongoing so temporary we should wait
bool
disableCodeParser
;
};
...
...
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