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
Tobias Hunger
qt-creator
Commits
6056c3e1
Commit
6056c3e1
authored
Jun 09, 2010
by
Robert Loehning
Browse files
Cleaned up calls to parent class's functions
parent
740717f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/fileiconprovider.cpp
View file @
6056c3e1
...
...
@@ -148,16 +148,6 @@ QIcon FileIconProvider::icon(const QFileInfo &fileInfo) const
#endif
}
QIcon
FileIconProvider
::
icon
(
IconType
type
)
const
{
return
QFileIconProvider
::
icon
(
type
);
}
QString
FileIconProvider
::
type
(
const
QFileInfo
&
info
)
const
{
return
QFileIconProvider
::
type
(
info
);
}
/*!
Creates a pixmap with baseicon at size and overlays overlayIcon over it.
See platform note in class documentation about recommended usage.
...
...
src/plugins/coreplugin/fileiconprovider.h
View file @
6056c3e1
...
...
@@ -56,9 +56,8 @@ public:
virtual
~
FileIconProvider
();
// Implement QFileIconProvider
virtual
QIcon
icon
(
IconType
type
)
const
;
virtual
QIcon
icon
(
const
QFileInfo
&
info
)
const
;
virtual
QString
type
(
const
QFileInfo
&
info
)
con
st
;
using
QFileIconProvider
::
i
con
;
// Register additional overlay icons
static
QPixmap
overlayIcon
(
QStyle
::
StandardPixmap
baseIcon
,
const
QIcon
&
overlayIcon
,
const
QSize
&
size
);
...
...
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