diff options
author | Timothy Pearson <[email protected]> | 2014-10-12 17:50:49 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-12 17:50:49 -0500 |
commit | 1346f6898707e6a4d95abee07c3d1608fc056998 (patch) | |
tree | d5fc28cf446d57d2109c4733938b947335f08da3 /ksplashml/themeengine/standard/themestandard.cpp | |
parent | ad7c5952211441479dd049c73de84d55cafccf04 (diff) | |
download | tdebase-1346f6898707e6a4d95abee07c3d1608fc056998.tar.gz tdebase-1346f6898707e6a4d95abee07c3d1608fc056998.zip |
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'ksplashml/themeengine/standard/themestandard.cpp')
-rw-r--r-- | ksplashml/themeengine/standard/themestandard.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksplashml/themeengine/standard/themestandard.cpp b/ksplashml/themeengine/standard/themestandard.cpp index ce0fd124e..8fd950eb5 100644 --- a/ksplashml/themeengine/standard/themestandard.cpp +++ b/ksplashml/themeengine/standard/themestandard.cpp @@ -34,7 +34,7 @@ ThemeStandard::ThemeStandard( TQWidget *parent, const char *name, const TQString :ThemeEngine( parent, name, args ), mIcon(0L), mPrevIcon(0L), mIconCount(0), mStdIconWidth(-1), mIconPos(WndIcon::HBottomLeft), mSbAtTop(false), mSbVisible(true), mSbPbVisible(true), mSbFontName("helvetica"), mSbFontSz(16), mSbFontBold(true), mSbFontItalic(false), mSbFont(TQFont()), mSbFg(TQColor()), mSbBg(TQColor()), - mSbIcon("run"), mIconsVisible(true), mIconsJumping(true), mSplashScreen("(Default)") + mSbIcon("system-run"), mIconsVisible(true), mIconsJumping(true), mSplashScreen("(Default)") { _readSettings(); _initUi(); @@ -158,7 +158,7 @@ void ThemeStandard::_readSettings() mSbFg = cfg->readColorEntry( "Statusbar Foreground", &TQt::white ); mSbBg = cfg->readColorEntry( "Statusbar Background", &TQt::black ); - mSbIcon = cfg->readEntry( "Statusbar Icon", "run" ); + mSbIcon = cfg->readEntry( "Statusbar Icon", "system-run" ); mIconsVisible = cfg->readBoolEntry( "Icons Visible", true); mIconsJumping = cfg->readBoolEntry( "Icons Jumping", true); mIconPos = (WndIcon::Position)cfg->readNumEntry( "Icon Position", 0 ); |