From f7642b09c9e61f71e434aeb0ceb330d2ccaa25db Mon Sep 17 00:00:00 2001 From: Alexander Golubev Date: Tue, 12 Mar 2024 01:19:14 +0300 Subject: TQT_THREAD_SUPPORT->!TQT_NO_THREAD: migrate sources Signed-off-by: Alexander Golubev --- src/inputmethod/qinputcontextfactory.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/inputmethod') diff --git a/src/inputmethod/qinputcontextfactory.cpp b/src/inputmethod/qinputcontextfactory.cpp index a54d2d24c..bf74df827 100644 --- a/src/inputmethod/qinputcontextfactory.cpp +++ b/src/inputmethod/qinputcontextfactory.cpp @@ -43,9 +43,9 @@ #include "ntqapplication.h" -#ifdef TQT_THREAD_SUPPORT +#ifndef TQT_NO_THREAD #include -#endif // TQT_THREAD_SUPPORT +#endif // TQT_NO_THREAD #include @@ -62,7 +62,7 @@ static void create_manager() if( manager ) // already created return; -#ifdef TQT_THREAD_SUPPORT +#ifndef TQT_NO_THREAD // protect manager creation TQMutexLocker locker( tqt_global_mutexpool ? tqt_global_mutexpool->get( &manager ) : 0); -- cgit v1.2.1