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
Marco Bubke
flatpak-qt-creator
Commits
e7c1ba53
Commit
e7c1ba53
authored
Oct 05, 2009
by
dt
Browse files
Remove variable that is never set but used.
parent
66a96c86
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/projectmodels.cpp
View file @
e7c1ba53
...
...
@@ -243,10 +243,6 @@ QVariant DetailedModel::data(const QModelIndex &index, int role) const
}
case
Qt
::
FontRole
:
{
QFont
font
;
if
(
qobject_cast
<
ProjectNode
*>
(
folderNode
))
{
if
(
index
==
this
->
index
(
0
,
0
)
&&
m_isStartupProject
)
font
.
setBold
(
true
);
}
result
=
font
;
break
;
}
...
...
src/plugins/projectexplorer/projectmodels.h
View file @
e7c1ba53
...
...
@@ -98,8 +98,6 @@ private:
SessionNode
*
m_rootNode
;
mutable
QHash
<
FolderNode
*
,
QList
<
Node
*>
>
m_childNodes
;
bool
m_isStartupProject
;
FolderNode
*
m_folderToAddTo
;
friend
class
DetailedModelManager
;
...
...
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