suppressed unused layout in searchClause
This commit is contained in:
parent
f57d4a91f9
commit
3ed934daf6
@ -165,7 +165,7 @@
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
<number>1</number>
|
||||
</property>
|
||||
<widget class="Line">
|
||||
<property name="name">
|
||||
@ -185,6 +185,20 @@
|
||||
</widget>
|
||||
</hbox>
|
||||
</widget>
|
||||
<widget class="Line">
|
||||
<property name="name">
|
||||
<cstring>line3</cstring>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>HLine</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>Sunken</enum>
|
||||
</property>
|
||||
<property name="orientation">
|
||||
<enum>Horizontal</enum>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLayoutWidget">
|
||||
<property name="name">
|
||||
<cstring>layout9</cstring>
|
||||
|
||||
@ -36,10 +36,7 @@ static char rcsid[] = "@(#$Id: searchclause_w.cpp,v 1.4 2006-12-04 06:19:11 dock
|
||||
SearchClauseW::SearchClauseW(QWidget* parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
searchClauseLayout = new QVBoxLayout(this);
|
||||
|
||||
hLayout = new QHBoxLayout(0, 0, 3, "hLayout");
|
||||
|
||||
QHBoxLayout* hLayout = new QHBoxLayout(this, 0, 3);
|
||||
sTpCMB = new QComboBox(FALSE, this, "sTpCMB");
|
||||
hLayout->addWidget(sTpCMB);
|
||||
|
||||
@ -49,7 +46,7 @@ SearchClauseW::SearchClauseW(QWidget* parent)
|
||||
wordsLE = new QLineEdit(this, "wordsLE");
|
||||
wordsLE->setMinimumSize(QSize(250, 0));
|
||||
hLayout->addWidget(wordsLE);
|
||||
searchClauseLayout->addLayout(hLayout);
|
||||
|
||||
languageChange();
|
||||
resize(QSize(0, 0).expandedTo(minimumSizeHint()));
|
||||
|
||||
|
||||
@ -42,9 +42,6 @@ public:
|
||||
QSpinBox* proxSlackSB;
|
||||
QLineEdit* wordsLE;
|
||||
|
||||
protected:
|
||||
QVBoxLayout* searchClauseLayout;
|
||||
QHBoxLayout* hLayout;
|
||||
public slots:
|
||||
virtual void tpChange(int);
|
||||
protected slots:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user