summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-11 21:45:17 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-11 21:45:17 -0500
commit69bdb0485d237b1a5b47e24322963ae166d3eaf4 (patch)
tree7c5044678ff9739e3893798ed5c75dc3b99b1784
parentc8d59acb670c9c317849bb442a573a542c9761dc (diff)
downloadkipi-plugins-69bdb048.tar.gz
kipi-plugins-69bdb048.zip
Bring previous and next icons into XDG compliance
-rw-r--r--kipi-plugins/printwizard/frmprintwizard.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kipi-plugins/printwizard/frmprintwizard.cpp b/kipi-plugins/printwizard/frmprintwizard.cpp
index 9448232..acf67c8 100644
--- a/kipi-plugins/printwizard/frmprintwizard.cpp
+++ b/kipi-plugins/printwizard/frmprintwizard.cpp
@@ -110,23 +110,23 @@ FrmPrintWizard::FrmPrintWizard(TQWidget *parent, const char *name )
BtnPrintOrderUp->setText("");
BtnPrintOrderUp->setIconSet( SmallIconSet( "up" ) );
BtnPreviewPageUp->setText("");
- BtnPreviewPageUp->setIconSet( SmallIconSet( "next" ) );
+ BtnPreviewPageUp->setIconSet( SmallIconSet( "go-next" ) );
BtnPreviewPageDown->setText("");
- BtnPreviewPageDown->setIconSet( SmallIconSet( "previous" ) );
+ BtnPreviewPageDown->setIconSet( SmallIconSet( "go-previous" ) );
BtnCropPrev->setText("");
- BtnCropPrev->setIconSet( SmallIconSet( "previous" ) );
+ BtnCropPrev->setIconSet( SmallIconSet( "go-previous" ) );
BtnCropNext->setText("");
- BtnCropNext->setIconSet( SmallIconSet( "next" ) );
+ BtnCropNext->setIconSet( SmallIconSet( "go-next" ) );
BtnCropRotate->setText("");
BtnCropRotate->setIconSet( SmallIconSet( "rotate" ) );
// wizard buttons
TQPushButton *pBtn = backButton ();
pBtn->setText("");
- pBtn->setIconSet( SmallIconSet( "previous" ) );
+ pBtn->setIconSet( SmallIconSet( "go-previous" ) );
pBtn = nextButton ();
pBtn->setText("");
- pBtn->setIconSet( SmallIconSet( "next" ) );
+ pBtn->setIconSet( SmallIconSet( "go-next" ) );
m_helpButton = helpButton();
KHelpMenu* helpMenu = new KHelpMenu(this, m_about, false);