aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt
diff options
context:
space:
mode:
Diffstat (limited to 'qt')
-rw-r--r--qt/ScintillaEditBase/ScintillaQt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/ScintillaEditBase/ScintillaQt.cpp b/qt/ScintillaEditBase/ScintillaQt.cpp
index 24c97013e..6464a4e66 100644
--- a/qt/ScintillaEditBase/ScintillaQt.cpp
+++ b/qt/ScintillaEditBase/ScintillaQt.cpp
@@ -53,8 +53,8 @@ ScintillaQt::~ScintillaQt()
void ScintillaQt::execCommand(QAction *action)
{
- int command = action->data().toInt();
- Command(command);
+ const int commandNum = action->data().toInt();
+ Command(commandNum);
}
#if defined(Q_OS_WIN)