diff options
| author | 2015-09-11 10:33:56 +0100 | |
|---|---|---|
| committer | 2015-09-11 18:17:57 +0100 | |
| commit | 007db9260027664d26408f3bd0935e3d6ef6c1a4 (patch) | |
| tree | b236c4aba03ea7008298e14d186fa446116c6681 /src/modules/raweditor/RawEditorWindow.cpp | |
| parent | Merge pull request #1568 from uNiversaI/Mary-Poppins (diff) | |
| download | KVIrc-007db9260027664d26408f3bd0935e3d6ef6c1a4.tar.gz KVIrc-007db9260027664d26408f3bd0935e3d6ef6c1a4.tar.bz2 KVIrc-007db9260027664d26408f3bd0935e3d6ef6c1a4.zip | |
Fix icon assignments in in Editor actions menus
Diffstat (limited to 'src/modules/raweditor/RawEditorWindow.cpp')
| -rw-r--r-- | src/modules/raweditor/RawEditorWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/raweditor/RawEditorWindow.cpp b/src/modules/raweditor/RawEditorWindow.cpp index 4ac5d2efa..fe496ca5a 100644 --- a/src/modules/raweditor/RawEditorWindow.cpp +++ b/src/modules/raweditor/RawEditorWindow.cpp @@ -160,11 +160,11 @@ void RawEditorWidget::customContextMenuRequested(const QPoint &pos) __tr2qs_ctx("&Disable Handler","editor"),this,SLOT(toggleCurrentHandlerEnabled())); m_pContextPopup->addAction( - *(g_pIconManager->getSmallIcon(KviIconManager::Quit)), + *(g_pIconManager->getSmallIcon(KviIconManager::Discard)), __tr2qs_ctx("Re&move Handler","editor"), this,SLOT(removeCurrentHandler())); m_pContextPopup->addAction( - *(g_pIconManager->getSmallIcon(KviIconManager::Folder)), + *(g_pIconManager->getSmallIcon(KviIconManager::Floppy)), __tr2qs_ctx("&Export Handler To...","editor"), this,SLOT(exportCurrentHandler())); } else { |
