diff options
Diffstat (limited to 'kdgantt/qlayoutengine_p.h')
-rw-r--r-- | kdgantt/qlayoutengine_p.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdgantt/qlayoutengine_p.h b/kdgantt/qlayoutengine_p.h index fed046aeb..2681ff733 100644 --- a/kdgantt/qlayoutengine_p.h +++ b/kdgantt/qlayoutengine_p.h @@ -46,7 +46,7 @@ // ------------- // // This file is not part of the Qt API. It exists for the convenience -// of qlayout.cpp, qlayoutengine.cpp, qmainwindow.cpp and qsplitter.cpp. +// of qtqlayout.cpp, qtqlayoutengine.cpp, qmainwindow.cpp and qsplitter.cpp. // This header file may change from version to version without notice, // or even be removed. // @@ -56,21 +56,21 @@ #ifndef QT_H -#include "tqabstractlayout.h" +#include "tqabstractqlayout.h" #endif // QT_H #ifndef QT_NO_LAYOUT struct QLayoutStruct { - void initParameters() { minimumSize = sizeHint = 0; - maximumSize = QWIDGETSIZE_MAX; expansive = FALSE; empty = TRUE; } + void initParameters() { tqminimumSize = tqsizeHint = 0; + tqmaximumSize = QWIDGETSIZE_MAX; expansive = FALSE; empty = TRUE; } void init() { stretch = 0; initParameters(); } //permanent storage: int stretch; //parameters: - QCOORD sizeHint; - QCOORD maximumSize; - QCOORD minimumSize; + QCOORD tqsizeHint; + QCOORD tqmaximumSize; + QCOORD tqminimumSize; bool expansive; bool empty; //temporary storage: |