diff options
author | Michele Calgaro <[email protected]> | 2023-11-24 10:55:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-24 10:55:12 +0900 |
commit | faf5c354e20dea9979786d8efb36554f2733bb2c (patch) | |
tree | ea4c81eda0b9a7a69a24405ebc0dfd2d6f9796bd | |
parent | 0f1fe616f05371ddb518b59af1254f7ef61e30d7 (diff) | |
download | tdeadmin-faf5c354e20dea9979786d8efb36554f2733bb2c.tar.gz tdeadmin-faf5c354e20dea9979786d8efb36554f2733bb2c.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <[email protected]>
-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"), |