aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/spaste
diff options
context:
space:
mode:
authorGravatar Alexey Sokolov2018-06-10 00:16:59 +0100
committerGravatar IceN9ne2018-11-14 08:59:22 -0500
commite4a34cb9b7d59a08a162d642fbbca8c08804b3ff (patch)
treeb3c5524281b4714da91729ffd19c9abbc95f8c62 /src/modules/spaste
parentUse C++14 (diff)
downloadKVIrc-e4a34cb9b7d59a08a162d642fbbca8c08804b3ff.tar.gz
KVIrc-e4a34cb9b7d59a08a162d642fbbca8c08804b3ff.tar.bz2
KVIrc-e4a34cb9b7d59a08a162d642fbbca8c08804b3ff.zip
Apply all modernize-* fixes from clang-tidy except for modernize-use-auto
Diffstat (limited to 'src/modules/spaste')
-rw-r--r--src/modules/spaste/SlowPasteController.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/spaste/SlowPasteController.cpp b/src/modules/spaste/SlowPasteController.cpp
index 726d0cc85..8d724e766 100644
--- a/src/modules/spaste/SlowPasteController.cpp
+++ b/src/modules/spaste/SlowPasteController.cpp
@@ -81,7 +81,7 @@ bool SlowPasteController::pasteFileInit(QString & fileName)
return true;
}
-bool SlowPasteController::pasteClipboardInit(void)
+bool SlowPasteController::pasteClipboardInit()
{
if(m_pFile)
return false; // can't paste clipboard while pasting a file
@@ -103,7 +103,7 @@ bool SlowPasteController::pasteClipboardInit(void)
return true;
}
-void SlowPasteController::pasteFile(void)
+void SlowPasteController::pasteFile()
{
QString line;
char data[1024];
@@ -132,7 +132,7 @@ void SlowPasteController::pasteFile(void)
}
}
-void SlowPasteController::pasteClipboard(void)
+void SlowPasteController::pasteClipboard()
{
if(m_pClipBuff->isEmpty() || !g_pApp->windowExists(m_pWindow))
{