aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/classeditor/ClassEditorWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/classeditor/ClassEditorWindow.cpp')
-rw-r--r--src/modules/classeditor/ClassEditorWindow.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/classeditor/ClassEditorWindow.cpp b/src/modules/classeditor/ClassEditorWindow.cpp
index d2a7b75b5..fba557ce2 100644
--- a/src/modules/classeditor/ClassEditorWindow.cpp
+++ b/src/modules/classeditor/ClassEditorWindow.cpp
@@ -911,7 +911,7 @@ void ClassEditorWidget::customContextMenuRequested(QPoint pnt)
m_pContextPopup->addSeparator();
pAction = m_pContextPopup->addAction(
- *(g_pIconManager->getSmallIcon(KviIconManager::Quit)),
+ *(g_pIconManager->getSmallIcon(KviIconManager::Discard)),
__tr2qs_ctx("Remove Selected","editor"),
this,SLOT(removeSelectedItems()));
pAction->setEnabled(bHasSelected);
@@ -919,20 +919,20 @@ void ClassEditorWidget::customContextMenuRequested(QPoint pnt)
m_pContextPopup->addSeparator();
m_pContextPopup->addAction(
- *(g_pIconManager->getSmallIcon(KviIconManager::Folder)),
+ *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)),
__tr2qs_ctx("Export Selected...","editor"),
this,SLOT(exportSelected()));
pAction->setEnabled(bHasSelected);
m_pContextPopup->addAction(
- *(g_pIconManager->getSmallIcon(KviIconManager::Folder)),
+ *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)),
__tr2qs_ctx("Export Selected in singles files...","editor"),
this,SLOT(exportSelectedSepFiles()));
pAction->setEnabled(bHasSelected);
m_pContextPopup->addAction(
- *(g_pIconManager->getSmallIcon(KviIconManager::Folder)),
+ *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)),
__tr2qs_ctx("Export All...","editor"),
this,SLOT(exportAll()));
pAction->setEnabled(bHasItems);