diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-13 13:02:29 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-08-13 13:02:29 -0500 |
commit | aff903681b50e7a48a340f292c24793bdf1188e9 (patch) | |
tree | e4f3346763ac6e4e96de152ae452f700b385ecfc /src | |
parent | a5f141fc0d18834f3eaca31ebcf621873e106acb (diff) | |
download | qt3-aff903681b50e7a48a340f292c24793bdf1188e9.tar.gz qt3-aff903681b50e7a48a340f292c24793bdf1188e9.zip |
Remove spurious junk that was causing kalyptus to fail from QSplitter/TQSplitter header files
Diffstat (limited to 'src')
-rw-r--r-- | src/widgets/qsplitter.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/widgets/qsplitter.h b/src/widgets/qsplitter.h index fea0af3..4a192fc 100644 --- a/src/widgets/qsplitter.h +++ b/src/widgets/qsplitter.h @@ -63,9 +63,9 @@ public: handleWidth( 0 ) { } QPtrList<QSplitterLayoutStruct> list; - bool opaque : 8; - bool firstShow : 8; - bool childrenCollapsible : 8; + bool opaque; + bool firstShow; + bool childrenCollapsible; int handleWidth; }; @@ -73,9 +73,9 @@ class QSplitterLayoutStruct : public Qt { public: QCOORD sizer; - uint isHandle : 1; - uint collapsible : 2; - uint resizeMode : 2; + uint isHandle; + uint collapsible; + uint resizeMode; QWidget *wid; QSplitterLayoutStruct() |