summaryrefslogtreecommitdiffstats
path: root/src/settingsuserdefinedinput.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:12:04 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:12:04 -0500
commite1c8f95bb242b557180d61ee07947ea72943d4e4 (patch)
treecd57ef61514e525d7a5c4de0fd6d5741ddf352af /src/settingsuserdefinedinput.cpp
parentc141e78102d1c5b31591f6e07f25d10852d028ee (diff)
downloadkbibtex-e1c8f95bb242b557180d61ee07947ea72943d4e4.tar.gz
kbibtex-e1c8f95bb242b557180d61ee07947ea72943d4e4.zip
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'src/settingsuserdefinedinput.cpp')
-rw-r--r--src/settingsuserdefinedinput.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settingsuserdefinedinput.cpp b/src/settingsuserdefinedinput.cpp
index d61e92a..cb06b6e 100644
--- a/src/settingsuserdefinedinput.cpp
+++ b/src/settingsuserdefinedinput.cpp
@@ -187,11 +187,11 @@ namespace KBibTeX
m_buttonDeleteField->setIconSet( TQIconSet( SmallIcon( "editdelete" ) ) );
gridLayout->addWidget( m_buttonDeleteField, 2, 1 );
m_buttonMoveUpField = new KPushButton( i18n( "user-defined input", "Up" ), this );
- m_buttonMoveUpField->setIconSet( TQIconSet( SmallIcon( "up" ) ) );
+ m_buttonMoveUpField->setIconSet( TQIconSet( SmallIcon( "go-up" ) ) );
gridLayout->addWidget( m_buttonMoveUpField, 3, 1 );
connect( m_buttonMoveUpField, SIGNAL( clicked() ), this, SLOT( slotMoveUpField() ) );
m_buttonMoveDownField = new KPushButton( i18n( "user-defined input", "Down" ), this );
- m_buttonMoveDownField->setIconSet( TQIconSet( SmallIcon( "down" ) ) );
+ m_buttonMoveDownField->setIconSet( TQIconSet( SmallIcon( "go-down" ) ) );
gridLayout->addWidget( m_buttonMoveDownField, 4, 1 );
connect( m_buttonMoveDownField, SIGNAL( clicked() ), this, SLOT( slotMoveDownField() ) );