Skip to content
Snippets Groups Projects
Commit 991e014b authored by Alessandro Portale's avatar Alessandro Portale
Browse files

Removed warning on Windows

parent 990ba675
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,9 @@ void FileIconProvider::registerIconOverlayForSuffix(const QIcon &icon, const QSt ...@@ -123,7 +123,9 @@ void FileIconProvider::registerIconOverlayForSuffix(const QIcon &icon, const QSt
QIcon FileIconProvider::iconForSuffix(const QString &suffix) const QIcon FileIconProvider::iconForSuffix(const QString &suffix) const
{ {
QIcon icon; QIcon icon;
#ifndef Q_WS_WIN // On windows we use the file system icons #ifdef Q_WS_WIN // On windows we use the file system icons
Q_UNUSED(suffix)
#else
if (suffix.isEmpty()) if (suffix.isEmpty())
return icon; return icon;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment