diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-25 11:21:54 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-29 12:16:41 +0900 |
commit | 73836b4ca5f241d070dd34ac1d9bb828e05f9544 (patch) | |
tree | 001b3935b9362f17083be2a8225e6ff42afc2019 /kexi/core | |
parent | 1607518b8c749b4195c5ab11b405f77001526a6a (diff) | |
download | koffice-73836b4c.tar.gz koffice-73836b4c.zip |
Drop USE_TQT4 code
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e0df02598b8e19d8b6ddf07fdbca661489ab2e99)
Diffstat (limited to 'kexi/core')
-rw-r--r-- | kexi/core/kexiblobbuffer.cpp | 2 | ||||
-rw-r--r-- | kexi/core/kexiblobbuffer.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/kexi/core/kexiblobbuffer.cpp b/kexi/core/kexiblobbuffer.cpp index aeb621c41..6cb91e7be 100644 --- a/kexi/core/kexiblobbuffer.cpp +++ b/kexi/core/kexiblobbuffer.cpp @@ -306,7 +306,7 @@ KexiBLOBBuffer::Handle KexiBLOBBuffer::objectForId(Id_t id, bool stored) rowData[1].toString(), rowData[2].toString(), rowData[3].toString(), - (Id_t)rowData[4].toInt() //!< @todo folder id: fix Id_t for TQt4 + (Id_t)rowData[4].toInt() ); insertItem(item); diff --git a/kexi/core/kexiblobbuffer.h b/kexi/core/kexiblobbuffer.h index 5207818ef..4299bbb1b 100644 --- a/kexi/core/kexiblobbuffer.h +++ b/kexi/core/kexiblobbuffer.h @@ -86,7 +86,6 @@ class KEXICORE_EXPORT KexiBLOBBuffer : public TQObject class Item; public: //! long integer for unique identifying blobs -//! @todo TQt4: will be changed typedef long Id_t; //! Access to KexiBLOBBuffer singleton |