diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-24 10:55:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-25 01:07:12 +0900 |
commit | 684b9d337202393fdcdb198184c1c0bc5ecbf30d (patch) | |
tree | d71c274c4d843a410203a0118d27f1c6c0c8050b | |
parent | 94076689c9064a2cfb6fbcc1b1abc98e60736416 (diff) | |
download | tdeadmin-684b9d337202393fdcdb198184c1c0bc5ecbf30d.tar.gz tdeadmin-684b9d337202393fdcdb198184c1c0bc5ecbf30d.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit faf5c354e20dea9979786d8efb36554f2733bb2c)
-rw-r--r-- | ksysv/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksysv/main.cpp b/ksysv/main.cpp index f7e4df2..ad7f8bf 100644 --- a/ksysv/main.cpp +++ b/ksysv/main.cpp @@ -53,7 +53,7 @@ static void myMessageOutput( TQtMsgType type, const char *msg ) int main( int argc, char **argv ) { // install own message handler that ignores debug-msg when DEBUG is not defined - tqInstallMsgHandler(myMessageOutput); + qInstallMsgHandler(myMessageOutput); TDEAboutData about("ksysv", I18N_NOOP("SysV-Init Editor"), KSYSV_VERSION_STRING, I18N_NOOP ("Editor for Sys-V like init configurations"), |