diff options
author | Chris <xchrisx@uber.space> | 2019-10-13 23:44:41 +0200 |
---|---|---|
committer | Chris <xchrisx@uber.space> | 2019-10-13 23:44:41 +0200 |
commit | 82f2aa6b13cbedb1fdb9f0747f19799f2ac1f735 (patch) | |
tree | 2dce08667bec4ba4c6ac39c62121a8beba099384 /tdeui | |
parent | e098e4600fc89b4ae63888f1295289f5f89af96d (diff) | |
download | tdelibs-82f2aa6b13cbedb1fdb9f0747f19799f2ac1f735.tar.gz tdelibs-82f2aa6b13cbedb1fdb9f0747f19799f2ac1f735.zip |
Add icon to switch language menu entry.
Signed-off-by: Chris <xchrisx@uber.space>
Diffstat (limited to 'tdeui')
-rw-r--r-- | tdeui/khelpmenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeui/khelpmenu.cpp b/tdeui/khelpmenu.cpp index 08755b860..f929e92a4 100644 --- a/tdeui/khelpmenu.cpp +++ b/tdeui/khelpmenu.cpp @@ -157,7 +157,7 @@ TDEPopupMenu* KHelpMenu::menu() { if (need_separator) mMenu->insertSeparator(); - mMenu->insertItem( i18n( "Switch application &language..." ), menuSwitchLanguage ); + mMenu->insertItem( SmallIcon("locale"), i18n( "Switch application &language..." ), menuSwitchLanguage ); mMenu->connectItem( menuSwitchLanguage, this, TQT_SLOT(switchApplicationLanguage()) ); need_separator = true; } |