summaryrefslogtreecommitdiffstats
path: root/tdecore/tdestartupinfo.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-23 10:54:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-23 11:01:54 +0900
commite84b6d8935842fb8dcee9dc42f8f35f36ee72748 (patch)
tree87bd11a4de4520261dadaef71da17259e870db02 /tdecore/tdestartupinfo.cpp
parent3373b45cc2adb7d46c45c3da06f64d5db24cb468 (diff)
downloadtdelibs-e84b6d8935842fb8dcee9dc42f8f35f36ee72748.tar.gz
tdelibs-e84b6d8935842fb8dcee9dc42f8f35f36ee72748.zip
Replaced time related '#define' with actual strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 73dba53e4a36a31d7c803806706cc8a17a245e5c)
Diffstat (limited to 'tdecore/tdestartupinfo.cpp')
-rw-r--r--tdecore/tdestartupinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/tdestartupinfo.cpp b/tdecore/tdestartupinfo.cpp
index 2744544a3..99fdefa73 100644
--- a/tdecore/tdestartupinfo.cpp
+++ b/tdecore/tdestartupinfo.cpp
@@ -930,7 +930,7 @@ TQCString TDEStartupInfo::createNewStartupId()
if (!gethostname( hostname, 255 ))
hostname[sizeof(hostname)-1] = '\0';
TQCString id = TQString(TQString( "%1;%2;%3;%4_TIME%5" ).arg( hostname ).arg( tm.tv_sec )
- .arg( tm.tv_usec ).arg( getpid()).arg( GET_QT_X_USER_TIME() )).utf8();
+ .arg( tm.tv_usec ).arg( getpid()).arg( get_tqt_x_user_time() )).utf8();
kdDebug( 172 ) << "[tdecore-tdestartupinfo] creating: " << id << ":" << tqAppName() << endl;
return id;
}