diff options
Diffstat (limited to 'src/kernel/qlayoutengine.cpp')
-rw-r--r-- | src/kernel/qlayoutengine.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/qlayoutengine.cpp b/src/kernel/qlayoutengine.cpp index c37811c32..149e04fd7 100644 --- a/src/kernel/qlayoutengine.cpp +++ b/src/kernel/qlayoutengine.cpp @@ -63,7 +63,7 @@ static inline int fRound( int i ) { count is the count of items in the chain; pos and space give the interval (relative to parentWidget topLeft). */ -Q_EXPORT void qGeomCalc( TQMemArray<TQLayoutStruct> &chain, int start, int count, +TQ_EXPORT void qGeomCalc( TQMemArray<TQLayoutStruct> &chain, int start, int count, int pos, int space, int spacer ) { typedef int fixed; @@ -242,7 +242,7 @@ Q_EXPORT void qGeomCalc( TQMemArray<TQLayoutStruct> &chain, int start, int count } } -Q_EXPORT TQSize qSmartMinSize( const TQWidgetItem *i ) +TQ_EXPORT TQSize qSmartMinSize( const TQWidgetItem *i ) { TQWidget *w = ((TQWidgetItem *)i)->widget(); @@ -284,13 +284,13 @@ Q_EXPORT TQSize qSmartMinSize( const TQWidgetItem *i ) return s; } -Q_EXPORT TQSize qSmartMinSize( TQWidget *w ) +TQ_EXPORT TQSize qSmartMinSize( TQWidget *w ) { TQWidgetItem item( w ); return qSmartMinSize( &item ); } -Q_EXPORT TQSize qSmartMaxSize( const TQWidgetItem *i, int align ) +TQ_EXPORT TQSize qSmartMaxSize( const TQWidgetItem *i, int align ) { TQWidget *w = ( (TQWidgetItem*)i )->widget(); if ( align & TQt::AlignHorizontal_Mask && align & TQt::AlignVertical_Mask ) @@ -313,7 +313,7 @@ Q_EXPORT TQSize qSmartMaxSize( const TQWidgetItem *i, int align ) return s; } -Q_EXPORT TQSize qSmartMaxSize( TQWidget *w, int align ) +TQ_EXPORT TQSize qSmartMaxSize( TQWidget *w, int align ) { TQWidgetItem item( w ); return qSmartMaxSize( &item, align ); |