From 5d9039ea894d6435b0491a287b9e44584ce39808 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Tue, 12 May 2015 23:40:02 +0200 Subject: [PATCH] Silence compiler warning about an unused variable. --- src/autotype/AutoTypeAction.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/autotype/AutoTypeAction.cpp b/src/autotype/AutoTypeAction.cpp index cc751abe0..090ca8234 100644 --- a/src/autotype/AutoTypeAction.cpp +++ b/src/autotype/AutoTypeAction.cpp @@ -89,5 +89,7 @@ void AutoTypeExecutor::execDelay(AutoTypeDelay* action) void AutoTypeExecutor::execClearField(AutoTypeClearField* action) { + Q_UNUSED(action); + // TODO: implement }