summaryrefslogtreecommitdiffstats
path: root/tdecore/tdeapplication.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-09-07 18:26:15 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2013-09-07 18:26:15 -0500
commit7f26e9d03ba171ef8f4b7e9b6940958f484309a7 (patch)
treec5554fc6339b42a5dd51122d23cd526ebfce632f /tdecore/tdeapplication.cpp
parentc6cb3f27942501d24b0ded69c90ebbf7c43c755e (diff)
downloadtdelibs-7f26e9d03ba171ef8f4b7e9b6940958f484309a7.tar.gz
tdelibs-7f26e9d03ba171ef8f4b7e9b6940958f484309a7.zip
Add source code module name to stdout/stderr messages to improve readability.
Diffstat (limited to 'tdecore/tdeapplication.cpp')
-rw-r--r--tdecore/tdeapplication.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tdecore/tdeapplication.cpp b/tdecore/tdeapplication.cpp
index 34bd8aadd..26138f86b 100644
--- a/tdecore/tdeapplication.cpp
+++ b/tdecore/tdeapplication.cpp
@@ -1251,13 +1251,13 @@ TDEConfig* TDEApplication::sessionConfig()
void TDEApplication::ref()
{
d->refCount++;
- //kdDebug() << "TDEApplication::ref() : refCount = " << d->refCount << endl;
+ //kdDebug() << "[tdecore-tdeapplication] TDEApplication::ref() : refCount = " << d->refCount << endl;
}
void TDEApplication::deref()
{
d->refCount--;
- //kdDebug() << "TDEApplication::deref() : refCount = " << d->refCount << endl;
+ //kdDebug() << "[tdecore-tdeapplication] TDEApplication::deref() : refCount = " << d->refCount << endl;
if ( d->refCount <= 0 )
quit();
}
@@ -2090,7 +2090,7 @@ void TDEApplication::getX11RGBAInformation(Display *dpy) {
if ( format->type == PictTypeDirect && format->direct.alphaMask ) {
visual = xvi[i].visual;
colormap = XCreateColormap( dpy, RootWindow( dpy, screen ), visual, AllocNone );
- kdDebug() << "found visual with alpha support" << endl;
+ kdDebug() << "[tdecore-tdeapplication] Found visual with alpha support" << endl;
argb_visual = true;
break;
}
@@ -2373,7 +2373,7 @@ void TDEApplication::addKipcEventMask(int id)
{
if (id >= 32)
{
- kdDebug(101) << "Cannot use KIPC event mask for message IDs >= 32\n";
+ kdDebug(101) << "[tdecore-tdeapplication] Cannot use KIPC event mask for message IDs >= 32\n";
return;
}
kipcEventMask |= (1 << id);
@@ -2383,7 +2383,7 @@ void TDEApplication::removeKipcEventMask(int id)
{
if (id >= 32)
{
- kdDebug(101) << "Cannot use KIPC event mask for message IDs >= 32\n";
+ kdDebug(101) << "[tdecore-tdeapplication] Cannot use KIPC event mask for message IDs >= 32\n";
return;
}
kipcEventMask &= ~(1 << id);
@@ -2878,7 +2878,7 @@ static TQStringList splitEmailAddressList( const TQString & aStr )
if (commentlevel > 0)
commentlevel--;
else {
- //kdDebug() << "Error in address splitting: Unmatched ')'"
+ //kdDebug() << "[tdecore-tdeapplication] Error in address splitting: Unmatched ')'"
// << endl;
return list;
}
@@ -2904,7 +2904,7 @@ static TQStringList splitEmailAddressList( const TQString & aStr )
list += addr.simplifyWhiteSpace();
}
//else
- // kdDebug() << "Error in address splitting: "
+ // kdDebug() << "[tdecore-tdeapplication] Error in address splitting: "
// << "Unexpected end of address list"
// << endl;