diff options
| author | Mavridis Philippe <mavridisf@gmail.com> | 2021-03-30 14:11:34 +0300 |
|---|---|---|
| committer | Mavridis Philippe <mavridisf@gmail.com> | 2021-03-30 14:11:34 +0300 |
| commit | d991b7f387775dc1071fb0c0af78de1c613ca991 (patch) | |
| tree | eb7c978130acb1b2c93eeea98be2f647372c6fac /src/main.cpp | |
| parent | 1bd3c5b42f1570b2100a4986f638f2723ee37ec4 (diff) | |
| download | kompose-d991b7f387775dc1071fb0c0af78de1c613ca991.tar.gz kompose-d991b7f387775dc1071fb0c0af78de1c613ca991.zip | |
Qt3->TQt conversion.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 0af9472..7936adc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -40,18 +40,18 @@ static KCmdLineOptions options[] = KCmdLineLastOption }; -void myMessageOutput( QtMsgType type, const char *msg ) +void myMessageOutput( TQtMsgType type, const char *msg ) { return; switch ( type ) { - case QtDebugMsg: + case TQtDebugMsg: fprintf( stderr, "Debug: %s\n", msg ); break; - case QtWarningMsg: + case TQtWarningMsg: fprintf( stderr, "Warning: %s\n", msg ); break; - case QtFatalMsg: + case TQtFatalMsg: fprintf( stderr, "Fatal: %s\n", msg ); abort(); // deliberately core dump } |
