diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:33:40 -0600 |
commit | 4fb897b216c41c13f128c71bcc66f60e2dc601c4 (patch) | |
tree | 2891b54cd6ec39db133da0110028ec93fc006751 /kinit/kinit.cpp | |
parent | 8fc8811ef6079a15decd33f1ea5d95dd718e4557 (diff) | |
download | tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.tar.gz tdelibs-4fb897b216c41c13f128c71bcc66f60e2dc601c4.zip |
Rename additional global TQt functions
Diffstat (limited to 'kinit/kinit.cpp')
-rw-r--r-- | kinit/kinit.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kinit/kinit.cpp b/kinit/kinit.cpp index 6859282d3..95c1510cb 100644 --- a/kinit/kinit.cpp +++ b/kinit/kinit.cpp @@ -1545,7 +1545,7 @@ int tdeinit_xio_errhandler( Display *disp ) // disp is 0L when KDE shuts down. We don't want those warnings then. if ( disp ) - qWarning( "tdeinit: Fatal IO error: client killed" ); + tqWarning( "tdeinit: Fatal IO error: client killed" ); if (sock_file[0]) { @@ -1567,7 +1567,7 @@ int tdeinit_xio_errhandler( Display *disp ) } if ( disp ) - qWarning( "tdeinit: sending SIGHUP to children." ); + tqWarning( "tdeinit: sending SIGHUP to children." ); /* this should remove all children we started */ signal(SIGHUP, SIG_IGN); @@ -1576,14 +1576,14 @@ int tdeinit_xio_errhandler( Display *disp ) sleep(2); if ( disp ) - qWarning( "tdeinit: sending SIGTERM to children." ); + tqWarning( "tdeinit: sending SIGTERM to children." ); /* and if they don't listen to us, this should work */ signal(SIGTERM, SIG_IGN); kill(0, SIGTERM); if ( disp ) - qWarning( "tdeinit: Exit." ); + tqWarning( "tdeinit: Exit." ); exit( 0 ); return 0; |