diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-13 11:29:53 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-13 11:29:53 -0500 |
commit | 5c3cfcce1ce974b6be37ea4c6f7bc7decf666383 (patch) | |
tree | ffab2c58cd08ec7a85139fcc2a6f81ad63881ea7 /ksmserver/server.cpp | |
parent | df5d0a61401e5a477660c2676f14a53a760510d9 (diff) | |
download | tdebase-5c3cfcce1ce974b6be37ea4c6f7bc7decf666383.tar.gz tdebase-5c3cfcce1ce974b6be37ea4c6f7bc7decf666383.zip |
Add ksmserver source code module name to stdout/stderr messages to improve readability.
Fix some KDE -> TDE branding issues.
Diffstat (limited to 'ksmserver/server.cpp')
-rw-r--r-- | ksmserver/server.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ksmserver/server.cpp b/ksmserver/server.cpp index da6af4943..2b6c406a0 100644 --- a/ksmserver/server.cpp +++ b/ksmserver/server.cpp @@ -435,7 +435,7 @@ Status SetAuthentication (int count, IceListenObj *listenObjs, TQString iceAuth = KGlobal::dirs()->findExe("iceauth"); if (iceAuth.isEmpty()) { - tqWarning("KSMServer: could not find iceauth"); + tqWarning("[KSMServer] could not find iceauth"); return 0; } @@ -465,7 +465,7 @@ void FreeAuthenticationData(int count, IceAuthDataEntry *authDataEntries) TQString iceAuth = KGlobal::dirs()->findExe("iceauth"); if (iceAuth.isEmpty()) { - tqWarning("KSMServer: could not find iceauth"); + tqWarning("[KSMServer] could not find iceauth"); return; } @@ -479,7 +479,7 @@ void FreeAuthenticationData(int count, IceAuthDataEntry *authDataEntries) static int Xio_ErrorHandler( Display * ) { - tqWarning("ksmserver: Fatal IO error: client killed"); + tqWarning("[KSMServer] Fatal IO error: client killed"); // Don't do anything that might require the X connection if (the_server) @@ -617,14 +617,14 @@ KSMServer::KSMServer( const TQString& windowManager, const TQString& windowManag (SmPointer) this, HostBasedAuthProc, 256, errormsg ) ) { - tqWarning("KSMServer: could not register XSM protocol"); + tqWarning("[KSMServer] could not register XSM protocol"); } if (!IceListenForConnections (&numTransports, &listenObjs, 256, errormsg)) { - tqWarning("KSMServer: Error listening for connections: %s", errormsg); - tqWarning("KSMServer: Aborting."); + tqWarning("[KSMServer] Error listening for connections: %s", errormsg); + tqWarning("[KSMServer] Aborting."); exit(1); } @@ -643,8 +643,8 @@ KSMServer::KSMServer( const TQString& windowManager, const TQString& windowManag f = ::fopen(fName.data(), "w+"); if (!f) { - tqWarning("KSMServer: can't open %s: %s", fName.data(), strerror(errno)); - tqWarning("KSMServer: Aborting."); + tqWarning("[KSMServer] can't open %s: %s", fName.data(), strerror(errno)); + tqWarning("[KSMServer] Aborting."); exit(1); } char* session_manager = IceComposeNetworkIdList(numTransports, listenObjs); @@ -657,10 +657,10 @@ KSMServer::KSMServer( const TQString& windowManager, const TQString& windowManag if (only_local) { if (!SetAuthentication_local(numTransports, listenObjs)) - tqFatal("KSMSERVER: authentication setup failed."); + tqFatal("[KSMServer] authentication setup failed."); } else { if (!SetAuthentication(numTransports, listenObjs, &authDataEntries)) - tqFatal("KSMSERVER: authentication setup failed."); + tqFatal("[KSMServer] authentication setup failed."); } IceAddConnectionWatch (KSMWatchProc, (IcePointer) this); |