diff options
author | Slávek Banko <[email protected]> | 2019-11-06 02:00:22 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-11-06 02:03:44 +0100 |
commit | 975e0485e3899f5415c94fa8e322b1a8eeae7367 (patch) | |
tree | 72afbb5a92f9ab6a3c42083374a021ffdf663c25 /src/tdepowersave_debug.h | |
parent | 9e3d90ed9964b5dce20a00b73320b3dc9a804692 (diff) | |
download | tdepowersave-975e0485e3899f5415c94fa8e322b1a8eeae7367.tar.gz tdepowersave-975e0485e3899f5415c94fa8e322b1a8eeae7367.zip |
Fix improper use of TQString::ascii().
This resolves issue #4.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 1ae603d7a9e7029f6918927738e44f4488d3f4ad)
Diffstat (limited to 'src/tdepowersave_debug.h')
-rw-r--r-- | src/tdepowersave_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tdepowersave_debug.h b/src/tdepowersave_debug.h index 9585a96..e97ade6 100644 --- a/src/tdepowersave_debug.h +++ b/src/tdepowersave_debug.h @@ -48,7 +48,7 @@ extern bool trace; /* * macro to collect time and k_funcinfo information for kdDebug() */ -#define funcinfo "[" << TQString(TQTime::currentTime().toString()).ascii() << \ +#define funcinfo "[" << TQString(TQTime::currentTime().toString()) << \ ":" << TQTime::currentTime().msec() << "]" << k_funcinfo /* |