From 1eb017313b2ebc441dfc81e73a5d6573d03ea08d Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 13 Jan 2024 11:29:06 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit faf33629bb6562a6f43f930afafe4b22e9cdb60b) --- qtsharp/src/bindings/static/QtSupport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qtsharp/src/bindings/static/QtSupport.cs') diff --git a/qtsharp/src/bindings/static/QtSupport.cs b/qtsharp/src/bindings/static/QtSupport.cs index 155bdd62..d7cddad0 100644 --- a/qtsharp/src/bindings/static/QtSupport.cs +++ b/qtsharp/src/bindings/static/QtSupport.cs @@ -165,7 +165,7 @@ namespace Qt { Console.WriteLine (format, arg); } - public static string TQT_SIGNAL (string signal) + public static string TQ_SIGNAL (string signal) { return "2"+ Regex.Replace (signal, @"\s*\(\s*\)", "()"); @@ -173,7 +173,7 @@ namespace Qt { } - public static string TQT_SLOT (string slot) + public static string TQ_SLOT (string slot) { return "1" + Regex.Replace (slot, @"\s*\(\s*\)", "()"); -- cgit v1.2.3