diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 00:12:04 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 00:12:04 -0500 |
commit | e1c8f95bb242b557180d61ee07947ea72943d4e4 (patch) | |
tree | cd57ef61514e525d7a5c4de0fd6d5741ddf352af /src/valuewidget.cpp | |
parent | c141e78102d1c5b31591f6e07f25d10852d028ee (diff) | |
download | kbibtex-e1c8f95bb242b557180d61ee07947ea72943d4e4.tar.gz kbibtex-e1c8f95bb242b557180d61ee07947ea72943d4e4.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'src/valuewidget.cpp')
-rw-r--r-- | src/valuewidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/valuewidget.cpp b/src/valuewidget.cpp index 2008c24..1ce6cd1 100644 --- a/src/valuewidget.cpp +++ b/src/valuewidget.cpp @@ -241,12 +241,12 @@ namespace KBibTeX m_pushButtonUp = new TQPushButton( i18n( "Up" ), this ); layout->addWidget( m_pushButtonUp, 5, 1 ); - m_pushButtonUp->setIconSet( TQIconSet( SmallIcon( "up" ) ) ); + m_pushButtonUp->setIconSet( TQIconSet( SmallIcon( "go-up" ) ) ); connect( m_pushButtonUp, SIGNAL( clicked() ), this, SLOT( slotUp() ) ); m_pushButtonDown = new TQPushButton( i18n( "Down" ), this ); layout->addWidget( m_pushButtonDown, 6, 1 ); - m_pushButtonDown->setIconSet( TQIconSet( SmallIcon( "down" ) ) ); + m_pushButtonDown->setIconSet( TQIconSet( SmallIcon( "go-down" ) ) ); connect( m_pushButtonDown, SIGNAL( clicked() ), this, SLOT( slotDown() ) ); } |