Skip to content
GitLab
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
58ab6111
Commit
58ab6111
authored
Sep 16, 2009
by
Denis Dzyubenko
Browse files
Enabled tooltips in quickopen
Reviewed-by: Thorbjorn Lindeijer
parent
e4ff0c8b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/quickopen/quickopentoolwindow.cpp
View file @
58ab6111
...
...
@@ -145,7 +145,7 @@ QVariant QuickOpenModel::data(const QModelIndex &index, int role) const
if
(
!
index
.
isValid
()
||
index
.
row
()
>=
mEntries
.
size
())
return
QVariant
();
if
(
role
==
Qt
::
DisplayRole
)
{
if
(
role
==
Qt
::
DisplayRole
||
role
==
Qt
::
ToolTipRole
)
{
if
(
index
.
column
()
==
0
)
{
return
mEntries
.
at
(
index
.
row
()).
displayName
;
}
else
if
(
index
.
column
()
==
1
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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