summaryrefslogtreecommitdiff
path: root/src/plugins/fakevim/fakevimhandler.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2018-10-05 14:00:05 +0200
committerTobias Hunger <tobias.hunger@qt.io>2018-10-05 13:06:33 +0000
commit9fe5733ef3268ec0356487431d68ebab70d5e079 (patch)
tree5fcda1afc7f480b035a9cd8c22c42b56dabace09 /src/plugins/fakevim/fakevimhandler.cpp
parent97a13ead72150b25816bb40548ef8f95702607b2 (diff)
downloadqt-creator-9fe5733ef3268ec0356487431d68ebab70d5e079.tar.gz
FakeVim: Fix clang complaining about register storage type
Change-Id: I9bbc2835c3311f46fdb3df83d56a8ab1ddd41f5a Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/fakevim/fakevimhandler.cpp')
-rw-r--r--src/plugins/fakevim/fakevimhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fakevim/fakevimhandler.cpp b/src/plugins/fakevim/fakevimhandler.cpp
index bf98680f5d..2b0e7ab10c 100644
--- a/src/plugins/fakevim/fakevimhandler.cpp
+++ b/src/plugins/fakevim/fakevimhandler.cpp
@@ -2010,7 +2010,7 @@ public:
bool startRecording(const Input &input);
void record(const Input &input);
void stopRecording();
- bool executeRegister(int register);
+ bool executeRegister(int reg);
// Handle current command as synonym
void handleAs(const QString &command);