From e3dc475d7d9e6421e000c05b32d1f354d54b4dec Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 25 Aug 2019 22:16:30 -0400 Subject: [PATCH] Editor/CMakeLists: Add QT_NO_NARROWING_CONVERSIONS_IN_CONNECT Requires narrowing conversions to be made explicitly. --- Editor/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Editor/CMakeLists.txt b/Editor/CMakeLists.txt index 8ae2298..0a9a179 100644 --- a/Editor/CMakeLists.txt +++ b/Editor/CMakeLists.txt @@ -65,6 +65,9 @@ target_compile_definitions(amuse-gui PRIVATE -DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII + # Disable narrowing conversions in signal/slot connect() calls. + -DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT + # Allows for more efficient string concatenation, resulting in less temporaries. -DQT_USE_QSTRINGBUILDER )