diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-03-07 17:22:58 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-03-04 02:54:10 +0100 |
commit | e9696710fd46af151364cb8626f62a7de194c8f2 (patch) | |
tree | 8c28fac86d78d767a6c22584ea40f552796c7130 /kdecore/netwm.cpp | |
parent | f29973ff64995727b9f5c0c43d65881d8af65f5e (diff) | |
download | tdelibs-e9696710fd46af151364cb8626f62a7de194c8f2.tar.gz tdelibs-e9696710fd46af151364cb8626f62a7de194c8f2.zip |
Add source code module name to stdout/stderr messages to improve readability.
(cherry picked from commit e15521d96b21cb0c771cce7cbe2ceb38f27c8844)
Diffstat (limited to 'kdecore/netwm.cpp')
-rw-r--r-- | kdecore/netwm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdecore/netwm.cpp b/kdecore/netwm.cpp index 455b6db65..bc352c8bc 100644 --- a/kdecore/netwm.cpp +++ b/kdecore/netwm.cpp @@ -629,7 +629,7 @@ NETRootInfo::NETRootInfo(Display *display, Window supportWindow, const char *wmN p->desktop_layout_columns = p->desktop_layout_rows = 0; setDefaultProperties(); if( properties_size > PROPERTIES_SIZE ) { - fprintf( stderr, "NETRootInfo::NETRootInfo(): properties array too large\n"); + fprintf( stderr, "[netwm] NETRootInfo::NETRootInfo(): properties array too large\n"); properties_size = PROPERTIES_SIZE; } for( int i = 0; i < properties_size; ++i ) @@ -730,7 +730,7 @@ NETRootInfo::NETRootInfo(Display *display, const unsigned long properties[], int p->desktop_layout_columns = p->desktop_layout_rows = 0; setDefaultProperties(); if( properties_size > 2 ) { - fprintf( stderr, "NETWinInfo::NETWinInfo(): properties array too large\n"); + fprintf( stderr, "[netwm] NETWinInfo::NETWinInfo(): properties array too large\n"); properties_size = 2; } for( int i = 0; i < properties_size; ++i ) |