From 50a6921103850df6f2aed598a3ed80ccb8a08b88 Mon Sep 17 00:00:00 2001 From: ws Date: Tue, 7 Oct 2014 10:19:30 +0200 Subject: [PATCH] fix #35491 --- mstyle/mstyle.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mstyle/mstyle.cpp b/mstyle/mstyle.cpp index 6ba5c0e53e9c..850986ce710e 100644 --- a/mstyle/mstyle.cpp +++ b/mstyle/mstyle.cpp @@ -8587,7 +8587,7 @@ void MgStyle::configurationChanged() } //--------------------------------------------------------- -// standardIconImplementation +// standardIcon //--------------------------------------------------------- QIcon MgStyle::standardIcon(StandardPixmap standardIcon, @@ -8811,8 +8811,8 @@ QIcon MgStyle::standardIcon(StandardPixmap standardIcon, case SP_MessageBoxQuestion: return getCachedIcon(":/data/icons/dialog-question.svg"); default: - return QIcon(); - // return QCommonStyle::standardIconImplementation( standardIcon, option, widget ); + // return QIcon(); + return QCommonStyle::standardIcon( standardIcon, option, widget ); } }