From 5489a2c6742658dd21136b9517ed5bbc9f49d964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 4 Aug 2013 12:17:19 +0200 Subject: [PATCH] Fix unintended renaming of acquire in convert_existing_qt3_app_to_tqt3 script --- qt3-tqt3/convert_existing_qt3_app_to_tqt3 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qt3-tqt3/convert_existing_qt3_app_to_tqt3 b/qt3-tqt3/convert_existing_qt3_app_to_tqt3 index bcf6f9f..22a2345 100755 --- a/qt3-tqt3/convert_existing_qt3_app_to_tqt3 +++ b/qt3-tqt3/convert_existing_qt3_app_to_tqt3 @@ -37,6 +37,9 @@ xargs -r0 sed -i \ -e 's/\([^abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ]\)tquit/\1quit/g' \ -e 's/^tquit/quit/g' \ \ + -e 's/ACTQUIRE/ACQUIRE/g' \ + -e 's/Actquire/Acquire/g' \ + -e 's/actquire/acquire/g' \ -e 's/RETQUIRE/REQUIRE/g' \ -e 's/Retquire/Require/g' \ -e 's/retquire/require/g'