diff options
author | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2010-03-01 15:56:29 (GMT) |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2010-03-01 16:02:42 (GMT) |
commit | b281e39d8449ccc63020ba959404f77aba424de8 (patch) | |
tree | d882a96e70633f03909ae1c7b7475dfc75a300f0 /tools/assistant | |
parent | 45d91603e65f78cb749bcc2c8949ef24048761df (diff) | |
download | Qt-b281e39d8449ccc63020ba959404f77aba424de8.zip Qt-b281e39d8449ccc63020ba959404f77aba424de8.tar.gz Qt-b281e39d8449ccc63020ba959404f77aba424de8.tar.bz2 |
Fixed the close button of the find widget in Assistant
Done with Christian Kandeler.
Diffstat (limited to 'tools/assistant')
-rw-r--r-- | tools/assistant/tools/assistant/findwidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/assistant/tools/assistant/findwidget.cpp b/tools/assistant/tools/assistant/findwidget.cpp index 2e40ab0..60318d4 100644 --- a/tools/assistant/tools/assistant/findwidget.cpp +++ b/tools/assistant/tools/assistant/findwidget.cpp @@ -72,6 +72,7 @@ FindWidget::FindWidget(QWidget *parent) toolClose = setupToolButton(QLatin1String(""), resourcePath + QLatin1String("/closetab.png")); hboxLayout->addWidget(toolClose); + connect(toolClose, SIGNAL(clicked()), SLOT(hide())); editFind = new QLineEdit(this); hboxLayout->addWidget(editFind); |