diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 14:02:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-25 13:05:38 +0900 |
commit | f62fb968fdb8733a34f98f689b9d86a6053d599d (patch) | |
tree | 81c2868f3227d347aaeb8aa67222948162eded3b /src/directorylist.h | |
parent | ead114dfbe5a3094fe2dee7d32333dff86cd4cb6 (diff) | |
download | klamav-f62fb968.tar.gz klamav-f62fb968.zip |
Replace Q_OBJECT with TQ_OBJECTr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 89d4e71455c288a916381ebcbf632539182a21a8)
Diffstat (limited to 'src/directorylist.h')
-rw-r--r-- | src/directorylist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/directorylist.h b/src/directorylist.h index aebbeec..962b0cc 100644 --- a/src/directorylist.h +++ b/src/directorylist.h @@ -33,7 +33,7 @@ namespace Collection { class Item; } class CollectionSetup : public TQVBox { -Q_OBJECT +TQ_OBJECT friend class Collection::Item; public: @@ -70,7 +70,7 @@ namespace Collection { //just to keep it out of the global namespace class Item : public TQObject, public TQCheckListItem { -Q_OBJECT +TQ_OBJECT public: Item( TQListView *parent, CollectionSetup *collection, const TQString &name, const TQString &path, const TQString &icon=TQString::null ); Item( TQListViewItem *parent, CollectionSetup *collection, const KURL &url ); @@ -99,7 +99,7 @@ private: class DeviceItem : public TQObject, public TQCheckListItem { - Q_OBJECT + TQ_OBJECT public: DeviceItem( TQListView *parent, CollectionSetup *collection ); DeviceItem( TQListViewItem *parent, CollectionSetup *collection, const TQString &name, const KURL &url ); |