diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:51:34 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:51:34 -0500 |
commit | d2ac3c618323d97084b0c1399ca28e6b41184de4 (patch) | |
tree | 2291ff8530e3eb87204c379d031207fe79f93639 /tdeui | |
parent | af586d3223f7971c614ff38d0a6969d3d2dfd715 (diff) | |
download | tdelibs-d2ac3c618323d97084b0c1399ca28e6b41184de4.tar.gz tdelibs-d2ac3c618323d97084b0c1399ca28e6b41184de4.zip |
Bring stop, lock, exit, and run icons into XDG compliance
Diffstat (limited to 'tdeui')
-rw-r--r-- | tdeui/kstdguiitem.cpp | 4 | ||||
-rw-r--r-- | tdeui/tests/twindowtest.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tdeui/kstdguiitem.cpp b/tdeui/kstdguiitem.cpp index 80bf54bce..793d4d946 100644 --- a/tdeui/kstdguiitem.cpp +++ b/tdeui/kstdguiitem.cpp @@ -229,7 +229,7 @@ KGuiItem KStdGuiItem::open() KGuiItem KStdGuiItem::quit() { - return KGuiItem( i18n( "&Quit" ), "exit", + return KGuiItem( i18n( "&Quit" ), "system-log-out", i18n( "Quit application" ) ); } @@ -256,7 +256,7 @@ KGuiItem KStdGuiItem::find() KGuiItem KStdGuiItem::stop() { - return KGuiItem(i18n("Stop"), "stop"); + return KGuiItem(i18n("Stop"), "process-stop"); } KGuiItem KStdGuiItem::add() diff --git a/tdeui/tests/twindowtest.cpp b/tdeui/tests/twindowtest.cpp index 77e01d289..2d60692dd 100644 --- a/tdeui/tests/twindowtest.cpp +++ b/tdeui/tests/twindowtest.cpp @@ -147,7 +147,7 @@ setAutoSaveSettings(); tb->setItemAutoSized (5); // Now add another button and align it right - pix = BarIcon("exit"); + pix = BarIcon("system-log-out"); tb->insertButton(pix, 6, TQT_SIGNAL(clicked()), TDEApplication::kApplication(), TQT_SLOT( quit() ), true, "Exit"); tb->alignItemRight (6); @@ -407,7 +407,7 @@ void testWindow::slotExit () else { TQPixmap pix; - pix = BarIcon("exit"); + pix = BarIcon("system-log-out"); tb->insertButton(pix, 6, TQT_SIGNAL(clicked()), TDEApplication::kApplication(), TQT_SLOT( quit() ), true, "Exit"); tb->alignItemRight (6); |