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/settingsidsuggestions.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/settingsidsuggestions.cpp')
-rw-r--r-- | src/settingsidsuggestions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settingsidsuggestions.cpp b/src/settingsidsuggestions.cpp index ebc094b..726fd72 100644 --- a/src/settingsidsuggestions.cpp +++ b/src/settingsidsuggestions.cpp @@ -355,11 +355,11 @@ namespace KBibTeX gridLayout->addWidget( m_buttonDeleteIdSuggestion, 2, 1 ); connect( m_buttonDeleteIdSuggestion, SIGNAL( clicked() ), this, SLOT( slotDeleteIdSuggestion() ) ); m_buttonMoveUpIdSuggestion = new KPushButton( i18n( "id suggestion", "Up" ), this ); - m_buttonMoveUpIdSuggestion->setIconSet( TQIconSet( SmallIcon( "up" ) ) ); + m_buttonMoveUpIdSuggestion->setIconSet( TQIconSet( SmallIcon( "go-up" ) ) ); gridLayout->addWidget( m_buttonMoveUpIdSuggestion, 3, 1 ); connect( m_buttonMoveUpIdSuggestion, SIGNAL( clicked() ), this, SLOT( slotMoveUpIdSuggestion() ) ); m_buttonMoveDownIdSuggestion = new KPushButton( i18n( "id suggestion", "Down" ), this ); - m_buttonMoveDownIdSuggestion->setIconSet( TQIconSet( SmallIcon( "down" ) ) ); + m_buttonMoveDownIdSuggestion->setIconSet( TQIconSet( SmallIcon( "go-down" ) ) ); gridLayout->addWidget( m_buttonMoveDownIdSuggestion, 4, 1 ); connect( m_buttonMoveDownIdSuggestion, SIGNAL( clicked() ), this, SLOT( slotMoveDownIdSuggestion() ) ); m_buttonToggleDefault = new KPushButton( i18n( "Toogle default" ), this ); |