diff options
author | con <qtc-committer@nokia.com> | 2009-07-17 13:13:12 +0200 |
---|---|---|
committer | con <qtc-committer@nokia.com> | 2009-07-17 13:13:32 +0200 |
commit | 8ed85f1eb6bff3bc41c1a1f6d4c0b3283939352c (patch) | |
tree | b769a2e0bd927fa7c61b5bbe880e6ec878585a96 /src/plugins/find/findtoolbar.cpp | |
parent | edac6eb84d90a2335b7539a964279d71b18175f8 (diff) | |
download | qt-creator-8ed85f1eb6bff3bc41c1a1f6d4c0b3283939352c.tar.gz |
Unify tool button appearance in "panelWidgets".
Reviewed-by: Jens Bache-Wiig
Diffstat (limited to 'src/plugins/find/findtoolbar.cpp')
-rw-r--r-- | src/plugins/find/findtoolbar.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/plugins/find/findtoolbar.cpp b/src/plugins/find/findtoolbar.cpp index 6289b50f28..2e8df6b263 100644 --- a/src/plugins/find/findtoolbar.cpp +++ b/src/plugins/find/findtoolbar.cpp @@ -82,16 +82,9 @@ FindToolBar::FindToolBar(FindPlugin *plugin, CurrentDocumentFind *currentDocumen connect(m_ui.findEdit, SIGNAL(editingFinished()), this, SLOT(invokeResetIncrementalSearch())); - m_ui.close->setProperty("type", QLatin1String("dockbutton")); m_ui.close->setIcon(QIcon(":/core/images/closebutton.png")); connect(m_ui.close, SIGNAL(clicked()), this, SLOT(hideAndResetFocus())); - m_ui.findPreviousButton->setProperty("type", QLatin1String("dockbutton")); - m_ui.findNextButton->setProperty("type", QLatin1String("dockbutton")); - m_ui.replacePreviousButton->setProperty("type", QLatin1String("dockbutton")); - m_ui.replaceNextButton->setProperty("type", QLatin1String("dockbutton")); - m_ui.replaceAllButton->setProperty("type", QLatin1String("dockbutton")); - m_findCompleter->setModel(m_plugin->findCompletionModel()); m_replaceCompleter->setModel(m_plugin->replaceCompletionModel()); m_ui.findEdit->setCompleter(m_findCompleter); |