diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-08 12:21:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-08 19:33:18 +0900 |
commit | c0b74ba868682f39c41a9f70ae11297425b711e1 (patch) | |
tree | 011b3da15bd49b62893629154ba84d87afa54f3e /tdeioslave | |
parent | 29b84bd0b10724c3fd1dc1ea0bcdedf5221ebd3f (diff) | |
download | tdelibs-c0b74ba868682f39c41a9f70ae11297425b711e1.tar.gz tdelibs-c0b74ba868682f39c41a9f70ae11297425b711e1.zip |
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeioslave')
-rw-r--r-- | tdeioslave/file/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeioslave/file/file.cpp b/tdeioslave/file/file.cpp index bf18a069b..4c9f3fd0f 100644 --- a/tdeioslave/file/file.cpp +++ b/tdeioslave/file/file.cpp @@ -569,7 +569,7 @@ void FileProtocol::put( const KURL& url, int _mode, bool _overwrite, bool _resum // set modification time const TQString mtimeStr = metaData( "modified" ); if ( !mtimeStr.isEmpty() ) { - TQDateTime dt = TQT_TQDATETIME_OBJECT(TQDateTime::fromString( mtimeStr, Qt::ISODate )); + TQDateTime dt = TQDateTime::fromString( mtimeStr, Qt::ISODate ); if ( dt.isValid() ) { KDE_struct_stat dest_statbuf; if (KDE_stat( _dest_orig.data(), &dest_statbuf ) == 0) { |