From 363396037dea1c02f287a99c513774cbb019326a Mon Sep 17 00:00:00 2001 From: Florian Geyer Date: Fri, 2 Nov 2012 17:48:16 +0100 Subject: [PATCH] Remove redundant resolvePlaceholders call. --- src/autotype/AutoType.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/autotype/AutoType.cpp b/src/autotype/AutoType.cpp index 7cfba262e..6fd05cb8b 100644 --- a/src/autotype/AutoType.cpp +++ b/src/autotype/AutoType.cpp @@ -114,7 +114,7 @@ void AutoType::performAutoType(const Entry* entry, QWidget* hideWindow, const QS QString sequence; if (customSequence.isEmpty()) { - sequence = entry->resolvePlaceholders(autoTypeSequence(entry)); + sequence = autoTypeSequence(entry); } else { sequence = customSequence;