diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-23 10:54:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-23 10:54:32 +0900 |
commit | 73dba53e4a36a31d7c803806706cc8a17a245e5c (patch) | |
tree | 699ac927ebddcdf6ab2aa6a8c19e06127b9d7e8b /tdecore/tdestartupinfo.cpp | |
parent | 80c2465371e5a7ab2dd6adb3c2bc32baa1c9b4ee (diff) | |
download | tdelibs-73dba53e4a36a31d7c803806706cc8a17a245e5c.tar.gz tdelibs-73dba53e4a36a31d7c803806706cc8a17a245e5c.zip |
Replaced time related '#define' with actual strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdecore/tdestartupinfo.cpp')
-rw-r--r-- | tdecore/tdestartupinfo.cpp | 2 |
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; } |