diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-02-07 10:28:49 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-02-07 10:29:07 +0900 |
commit | be256666b2d960267a6162df5fbb0a26db62796a (patch) | |
tree | cf27780ab01995781432dc868f5f7efb5b752c50 /src | |
parent | d0da08125889e384076c688a8e4cedba31857a3c (diff) | |
download | tqt3-be256666b2d960267a6162df5fbb0a26db62796a.tar.gz tqt3-be256666b2d960267a6162df5fbb0a26db62796a.zip |
Removed QT_NON_COMMERCIAL check and related code.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit cde9d7e9428e90ce8ba0bb86802f85f186adf741)
Diffstat (limited to 'src')
-rw-r--r-- | src/dialogs/qmessagebox.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/dialogs/qmessagebox.cpp b/src/dialogs/qmessagebox.cpp index 6a332a41b..2d02aa944 100644 --- a/src/dialogs/qmessagebox.cpp +++ b/src/dialogs/qmessagebox.cpp @@ -52,10 +52,6 @@ #if defined(QT_ACCESSIBILITY_SUPPORT) #include "ntqaccessible.h" #endif -#if defined QT_NON_COMMERCIAL -#include "qnc_win.h" -#endif - #ifdef Q_WS_X11 #include "private/qtkdeintegration_x11_p.h" @@ -590,9 +586,6 @@ void TQMessageBox::init( int button0, int button1, int button2 ) if ( !translatedTextAboutTQt ) { translatedTextAboutTQt = new TQString; -#if defined(QT_NON_COMMERCIAL) - QT_NC_MSGBOX -#else *translatedTextAboutTQt = tr( "<h3>About TQt</h3>" "<p>This program uses TQt version %1.</p>" @@ -606,7 +599,6 @@ void TQMessageBox::init( int button0, int button1, int button2 ) "See <tt>https://trinitydesktop.org/docs/qt3/</tt> " "for more information.</p>" ).arg( TQT_VERSION_STR ); -#endif } label = new TQMessageBoxLabel( this ); |