summaryrefslogtreecommitdiffstats
path: root/src/kernel/ntqlayout.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-09-13 13:18:58 +0900
committerMichele Calgaro <[email protected]>2023-09-14 10:35:25 +0900
commiteb42871e999672a8fad5793733c58be05928c8ea (patch)
tree57323eeb0fc8e0f0c30389b23d1aac0870ff3953 /src/kernel/ntqlayout.h
parent440483234fd5d8f29517d9c84b4227db80a90361 (diff)
downloadtqt3-eb42871e999672a8fad5793733c58be05928c8ea.tar.gz
tqt3-eb42871e999672a8fad5793733c58be05928c8ea.zip
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 1ba13366a7a377d50b9e8df9044ce11d8209f98c)
Diffstat (limited to 'src/kernel/ntqlayout.h')
-rw-r--r--src/kernel/ntqlayout.h20
1 files changed, 10 insertions, 10 deletions
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: