summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:48:01 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:48:01 -0500
commitc22bede4d61a639fdf91678ccd7aec4760e79275 (patch)
treea0f0bc608a9da6ec160e380ec4adae73d5ed6878
parent85fdad868592c5608dabe03df9dc7f02346ac8b2 (diff)
downloadkbibtex-c22bede4d61a639fdf91678ccd7aec4760e79275.tar.gz
kbibtex-c22bede4d61a639fdf91678ccd7aec4760e79275.zip
Bring stop, lock, exit, and run icons into XDG compliance
-rw-r--r--src/documentwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/documentwidget.cpp b/src/documentwidget.cpp
index 2f47be5..9a8ff7b 100644
--- a/src/documentwidget.cpp
+++ b/src/documentwidget.cpp
@@ -1711,7 +1711,7 @@ namespace KBibTeX
if ( entryToNewId.isEmpty() )
KMessageBox::information( this, i18n( "No entries were selected." ) );
- else if ( KMessageBox::questionYesNoList( this, i18n( "The following changes will be applied to the currently selected elements.\nConflicts with duplicate entry ids will be resolved when applying the new ids." ), msgList, i18n( "Normalize Entry Ids" ), KGuiItem( i18n( "Replace Entry Ids" ), "run" ), KGuiItem( i18n( "Cancel" ), "cancel" ) ) == KMessageBox::Yes )
+ else if ( KMessageBox::questionYesNoList( this, i18n( "The following changes will be applied to the currently selected elements.\nConflicts with duplicate entry ids will be resolved when applying the new ids." ), msgList, i18n( "Normalize Entry Ids" ), KGuiItem( i18n( "Replace Entry Ids" ), "system-run" ), KGuiItem( i18n( "Cancel" ), "cancel" ) ) == KMessageBox::Yes )
{
TQApplication::setOverrideCursor( TQt::waitCursor );
TQMap<BibTeX::Entry*, DocumentListViewItem*>::Iterator itItem = entryToItem.begin();