diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-09 23:09:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-09 23:09:59 +0900 |
commit | 83991febd2b98788a0a018e187de0dfb7d95b500 (patch) | |
tree | ec363502a3d11082cc54d17b7969f8ba605e1f01 /src/dialogs/qfiledialog.cpp | |
parent | 48ea22d00b58a37508567756b2955582cd9efe5a (diff) | |
download | tqt3-83991febd2b98788a0a018e187de0dfb7d95b500.tar.gz tqt3-83991febd2b98788a0a018e187de0dfb7d95b500.zip |
Remove Qt4 related stuff
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/dialogs/qfiledialog.cpp')
-rw-r--r-- | src/dialogs/qfiledialog.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/dialogs/qfiledialog.cpp b/src/dialogs/qfiledialog.cpp index def6deb15..6de17f9db 100644 --- a/src/dialogs/qfiledialog.cpp +++ b/src/dialogs/qfiledialog.cpp @@ -2005,13 +2005,7 @@ TQString TQFileDialogPrivate::File::text( int column ) const return info.name(); case 1: if ( info.isFile() ) { -#if (TQT_VERSION-0 >= 0x040000) -#error "clean up Large File Support" -#elif defined(QT_ABI_QT4) - TQIODevice::Offset size = info.size(); -#else uint size = info.size(); -#endif #if defined(QT_LARGEFILE_SUPPORT) && defined(Q_OS_UNIX) // ### the following code should not be needed as soon // ### as TQUrlInfo::size() can return 64-bit |