aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/raweditor/RawEditorWindow.cpp
diff options
context:
space:
mode:
authorGravatar IceN9ne2018-11-27 19:40:08 -0500
committerGravatar IceN9ne2018-11-27 19:40:08 -0500
commit4dff175cd8880adccabd2b2e95911cd20acccf74 (patch)
treea6cf661b5437af43abce0176bd33448865c2b345 /src/modules/raweditor/RawEditorWindow.cpp
parentRemove the keyword register from the code. (diff)
downloadKVIrc-4dff175cd8880adccabd2b2e95911cd20acccf74.tar.gz
KVIrc-4dff175cd8880adccabd2b2e95911cd20acccf74.tar.bz2
KVIrc-4dff175cd8880adccabd2b2e95911cd20acccf74.zip
Fix compiler warnings in the code.
Diffstat (limited to 'src/modules/raweditor/RawEditorWindow.cpp')
-rw-r--r--src/modules/raweditor/RawEditorWindow.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/raweditor/RawEditorWindow.cpp b/src/modules/raweditor/RawEditorWindow.cpp
index 53364371a..c9aedb643 100644
--- a/src/modules/raweditor/RawEditorWindow.cpp
+++ b/src/modules/raweditor/RawEditorWindow.cpp
@@ -153,11 +153,11 @@ void RawEditorWidget::customContextMenuRequested(const QPoint & pos)
m_pContextPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::HandlerDisabled)),
__tr2qs_ctx("&Disable Handler", "editor"), this, SLOT(toggleCurrentHandlerEnabled()));
- m_pContextPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Discard)),
- __tr2qs_ctx("Re&move Handler", "editor"), this, SLOT(removeCurrentHandler()));
+ m_pContextPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Discard)),
+ __tr2qs_ctx("Re&move Handler", "editor"), this, SLOT(removeCurrentHandler()));
- m_pContextPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Save)),
- __tr2qs_ctx("&Export Handler to...", "editor"), this, SLOT(exportCurrentHandler()));
+ m_pContextPopup->addAction(*(g_pIconManager->getSmallIcon(KviIconManager::Save)),
+ __tr2qs_ctx("&Export Handler to...", "editor"), this, SLOT(exportCurrentHandler()));
}
else
{