diff options
author | Timothy Pearson <[email protected]> | 2014-10-11 21:45:14 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-11 21:45:14 -0500 |
commit | 3198b2b889fc7fcad07a7977d4e645aab6c402f7 (patch) | |
tree | be60231c88f81e67db1bde7557d0a787c038a897 /kexi/formeditor | |
parent | fd7a824a665cc57443575c3d157b0d9ff1fb2af1 (diff) | |
download | koffice-3198b2b889fc7fcad07a7977d4e645aab6c402f7.tar.gz koffice-3198b2b889fc7fcad07a7977d4e645aab6c402f7.zip |
Bring previous and next icons into XDG compliance
Diffstat (limited to 'kexi/formeditor')
-rw-r--r-- | kexi/formeditor/factories/containerfactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kexi/formeditor/factories/containerfactory.cpp b/kexi/formeditor/factories/containerfactory.cpp index 18ce167c..8b0d5fc5 100644 --- a/kexi/formeditor/factories/containerfactory.cpp +++ b/kexi/formeditor/factories/containerfactory.cpp @@ -686,11 +686,11 @@ ContainerFactory::createMenuActions(const TQCString &classname, TQWidget *w, TQP if(stack->childrenListObject().count() == 4) // == the stack has only one page menu->setItemEnabled(id, false); - id = menu->insertItem(SmallIconSet("next"), i18n("Jump to Next Page"), this, TQT_SLOT(nextStackPage())); + id = menu->insertItem(SmallIconSet("go-next"), i18n("Jump to Next Page"), this, TQT_SLOT(nextStackPage())); if(!stack->widget(stack->id(stack->visibleWidget())+1)) menu->setItemEnabled(id, false); - id = menu->insertItem(SmallIconSet("previous"), i18n("Jump to Previous Page"), this, TQT_SLOT(prevStackPage())); + id = menu->insertItem(SmallIconSet("go-previous"), i18n("Jump to Previous Page"), this, TQT_SLOT(prevStackPage())); if(!stack->widget(stack->id(stack->visibleWidget()) -1) ) menu->setItemEnabled(id, false); return true; |