diff options
Diffstat (limited to 'utils/regtools/qeditor/utils.h')
-rw-r--r-- | utils/regtools/qeditor/utils.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/regtools/qeditor/utils.h b/utils/regtools/qeditor/utils.h index b9755cf3c3..655e3ae96f 100644 --- a/utils/regtools/qeditor/utils.h +++ b/utils/regtools/qeditor/utils.h @@ -732,11 +732,12 @@ public: QIcon GetIcon(IconType it); protected: - void Render(IconType type); + QIcon GetFallbackIcon(IconType it); static YIconManager *m_singleton; // single instance - QIcon m_icon[MaxIcon]; /* list add icon */ + QIcon m_icon[MaxIcon]; /* cache icons */ QString m_icon_name[MaxIcon]; /* icon name from theme */ + QStyle::StandardPixmap m_icon_fallback[MaxIcon]; /* icon from style */ }; class Misc |