summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:51:05 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-12 17:51:05 -0500
commit75cfc55a309c0f644baa389621d8c90063c180ab (patch)
treea88b7c97bb9e42916e959ada129a261941a13253
parenta1155443640efe9db201c47cc0bf280f1a3dffa5 (diff)
downloadtdeedu-75cfc55a309c0f644baa389621d8c90063c180ab.tar.gz
tdeedu-75cfc55a309c0f644baa389621d8c90063c180ab.zip
Bring stop, lock, exit, and run icons into XDG compliance
-rw-r--r--kig/kig/kig_part.cpp2
-rw-r--r--klatin/klatin/klatin.cpp2
-rw-r--r--kpercentage/kpercentage/kpercentage.cpp2
-rw-r--r--kturtle/src/kturtle.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/kig/kig/kig_part.cpp b/kig/kig/kig_part.cpp
index 3d830a70..393ccfb9 100644
--- a/kig/kig/kig_part.cpp
+++ b/kig/kig/kig_part.cpp
@@ -233,7 +233,7 @@ void KigPart::setupActions()
aDeleteObjects->setToolTip(i18n("Delete the selected objects"));
aCancelConstruction = new TDEAction(
- i18n("Cancel Construction"), "stop", Key_Escape, this,
+ i18n("Cancel Construction"), "process-stop", Key_Escape, this,
TQT_SLOT(cancelConstruction()), actionCollection(), "cancel_construction");
aCancelConstruction->setToolTip(
i18n("Cancel the construction of the object being constructed"));
diff --git a/klatin/klatin/klatin.cpp b/klatin/klatin/klatin.cpp
index 7788ade5..dc393c4e 100644
--- a/klatin/klatin/klatin.cpp
+++ b/klatin/klatin/klatin.cpp
@@ -184,7 +184,7 @@ void KLatin::resetGUI()
// various options that are available to choose
// and setCentralWidget it.
klatinchoose = new KLatinChoose(this);
- klatinchoose->QuitButton->setIconSet(TDEGlobal::iconLoader()->loadIconSet("exit", TDEIcon::Small));
+ klatinchoose->QuitButton->setIconSet(TDEGlobal::iconLoader()->loadIconSet("system-log-out", TDEIcon::Small));
klatinchoose->show();
setCentralWidget(klatinchoose);
diff --git a/kpercentage/kpercentage/kpercentage.cpp b/kpercentage/kpercentage/kpercentage.cpp
index 1ca0419c..0a61aff8 100644
--- a/kpercentage/kpercentage/kpercentage.cpp
+++ b/kpercentage/kpercentage/kpercentage.cpp
@@ -89,7 +89,7 @@ KPercentage::KPercentage( const char *name ) :
KHelpMenu *help_menu = new KHelpMenu( this, TDEGlobal::instance()->aboutData(), true );
button_help->setPopup( ( TQPopupMenu* ) ( help_menu->menu() ) );
KPushButton *button_close = new KPushButton( i18n( "E&xit" ), this );
- button_close->setIconSet( TQIconSet( icon_loader.loadIcon( "exit", TDEIcon::NoGroup, 32 ) ) );
+ button_close->setIconSet( TQIconSet( icon_loader.loadIcon( "system-log-out", TDEIcon::NoGroup, 32 ) ) );
combo_box_level = new KComboBox( this );
combo_box_level->insertItem( i18n( "Easy" ) );
diff --git a/kturtle/src/kturtle.cpp b/kturtle/src/kturtle.cpp
index e2080af1..7170c742 100644
--- a/kturtle/src/kturtle.cpp
+++ b/kturtle/src/kturtle.cpp
@@ -138,7 +138,7 @@ void MainWindow::setupActions()
pause = new TDEToggleAction(i18n("Pause E&xecution"), "player_pause", Key_Pause, TQT_TQOBJECT(this), TQT_SLOT( slotPauseExecution() ), ac, "pause");
pause->setChecked(false);
pause->setEnabled(false);
- stop = new TDEAction(i18n("Stop E&xecution"), "stop", Key_Escape, TQT_TQOBJECT(this), TQT_SLOT( slotAbortExecution() ), ac, "stop");
+ stop = new TDEAction(i18n("Stop E&xecution"), "process-stop", Key_Escape, TQT_TQOBJECT(this), TQT_SLOT( slotAbortExecution() ), ac, "stop");
stop->setEnabled(false);
KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(slotPrint()), ac);
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(close()), ac);