From 1ba13366a7a377d50b9e8df9044ce11d8209f98c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 13 Sep 2023 13:18:58 +0900 Subject: Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN Signed-off-by: Michele Calgaro --- src/kernel/ntqlayout.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/kernel/ntqlayout.h') diff --git a/src/kernel/ntqlayout.h b/src/kernel/ntqlayout.h index a9962e47c..6e0749098 100644 --- a/src/kernel/ntqlayout.h +++ b/src/kernel/ntqlayout.h @@ -66,7 +66,7 @@ class TQMenuBar; class TQSpacerItem; class TQWidget; -class Q_EXPORT TQGLayoutIterator : public TQShared +class TQ_EXPORT TQGLayoutIterator : public TQShared { public: virtual ~TQGLayoutIterator(); @@ -75,7 +75,7 @@ public: virtual TQLayoutItem *takeCurrent() = 0; }; -class Q_EXPORT TQLayoutIterator +class TQ_EXPORT TQLayoutIterator { public: TQLayoutIterator( TQGLayoutIterator *i ) : it( i ) { } @@ -101,7 +101,7 @@ private: TQGLayoutIterator *it; }; -class Q_EXPORT TQLayoutItem +class TQ_EXPORT TQLayoutItem { public: TQLayoutItem( int alignment = 0 ) : align( alignment ) { } @@ -130,7 +130,7 @@ protected: int align; }; -class Q_EXPORT TQSpacerItem : public TQLayoutItem +class TQ_EXPORT TQSpacerItem : public TQLayoutItem { public: TQSpacerItem( int w, int h, @@ -156,7 +156,7 @@ private: TQRect rect; }; -class Q_EXPORT TQWidgetItem : public TQLayoutItem +class TQ_EXPORT TQWidgetItem : public TQLayoutItem { public: TQWidgetItem( TQWidget *w ) : wid( w ) { } @@ -176,7 +176,7 @@ private: TQWidget *wid; }; -class Q_EXPORT TQLayout : public TQObject, public TQLayoutItem +class TQ_EXPORT TQLayout : public TQObject, public TQLayoutItem { TQ_OBJECT TQ_ENUMS( ResizeMode ) @@ -288,7 +288,7 @@ inline void TQLayoutIterator::deleteCurrent() delete takeCurrent(); } -class Q_EXPORT TQGridLayout : public TQLayout +class TQ_EXPORT TQGridLayout : public TQLayout { TQ_OBJECT public: @@ -365,7 +365,7 @@ private: class TQBoxLayoutData; class TQDockWindow; -class Q_EXPORT TQBoxLayout : public TQLayout +class TQ_EXPORT TQBoxLayout : public TQLayout { TQ_OBJECT public: @@ -431,7 +431,7 @@ private: TQBoxLayout *createTmpCopy(); }; -class Q_EXPORT TQHBoxLayout : public TQBoxLayout +class TQ_EXPORT TQHBoxLayout : public TQBoxLayout { TQ_OBJECT public: @@ -450,7 +450,7 @@ private: // Disabled copy constructor and operator= #endif }; -class Q_EXPORT TQVBoxLayout : public TQBoxLayout +class TQ_EXPORT TQVBoxLayout : public TQBoxLayout { TQ_OBJECT public: -- cgit v1.2.1