From e1c8f95bb242b557180d61ee07947ea72943d4e4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 00:12:04 -0500 Subject: Bring up, down, top, and bottom icons into XDG compliance --- src/settingsuserdefinedinput.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/settingsuserdefinedinput.cpp') 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() ) ); -- cgit v1.2.3