summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:12:48 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:12:48 -0500
commitdb0695cca6df7ea4ba4d43405f57148f1e8db9e7 (patch)
treefbdeba925281e3038abc4f43cef0dcf9a83742c1 /lib
parentb15717a9c63f515e040d7681197b97e59f938b40 (diff)
downloadkoffice-db0695cca6df7ea4ba4d43405f57148f1e8db9e7.tar.gz
koffice-db0695cca6df7ea4ba4d43405f57148f1e8db9e7.zip
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'lib')
-rw-r--r--lib/kotext/KoStyleManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/kotext/KoStyleManager.cpp b/lib/kotext/KoStyleManager.cpp
index 0a77bb42a..3ec2e5c1c 100644
--- a/lib/kotext/KoStyleManager.cpp
+++ b/lib/kotext/KoStyleManager.cpp
@@ -148,12 +148,12 @@ void KoStyleManager::setupWidget(const KoStyleCollection& styleCollection)
m_moveUpButton = new TQPushButton( frame1, "moveUpButton" );
- m_moveUpButton->setIconSet( SmallIconSet( "up" ) );
+ m_moveUpButton->setIconSet( SmallIconSet( "go-up" ) );
connect( m_moveUpButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( moveUpStyle() ) );
frame1Layout->addWidget( m_moveUpButton, 1, 1 );
m_moveDownButton = new TQPushButton( frame1, "moveDownButton" );
- m_moveDownButton->setIconSet( SmallIconSet( "down" ) );
+ m_moveDownButton->setIconSet( SmallIconSet( "go-down" ) );
connect( m_moveDownButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( moveDownStyle() ) );
frame1Layout->addWidget( m_moveDownButton, 1, 0 );