diff options
author | Tobias Hunger <tobias.hunger@nokia.com> | 2010-06-16 11:56:30 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2010-06-16 13:08:40 +0200 |
commit | 9b18a58ae531e266c030dd7960d6ce157e7fe198 (patch) | |
tree | 66a838e6b4cb64f0b944f417906c1e8b139f3a24 /src/plugins/find | |
parent | c29ef119561abf453a57100b375a4f5651f44293 (diff) | |
download | qt-creator-9b18a58ae531e266c030dd7960d6ce157e7fe198.tar.gz |
s/name/displayName/ in ioutputpane
Reviewed-by: dt
Diffstat (limited to 'src/plugins/find')
-rw-r--r-- | src/plugins/find/searchresultwindow.cpp | 2 | ||||
-rw-r--r-- | src/plugins/find/searchresultwindow.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/find/searchresultwindow.cpp b/src/plugins/find/searchresultwindow.cpp index 05f236b5dd..7a27bf3c14 100644 --- a/src/plugins/find/searchresultwindow.cpp +++ b/src/plugins/find/searchresultwindow.cpp @@ -96,7 +96,7 @@ SearchResultWindowPrivate::SearchResultWindowPrivate() SearchResultWindow::SearchResultWindow() : d(new SearchResultWindowPrivate) { d->m_widget = new QStackedWidget; - d->m_widget->setWindowTitle(name()); + d->m_widget->setWindowTitle(displayName()); d->m_searchResultTreeView = new Internal::SearchResultTreeView(d->m_widget); d->m_searchResultTreeView->setFrameStyle(QFrame::NoFrame); diff --git a/src/plugins/find/searchresultwindow.h b/src/plugins/find/searchresultwindow.h index c8f38285bc..5adc86fe7c 100644 --- a/src/plugins/find/searchresultwindow.h +++ b/src/plugins/find/searchresultwindow.h @@ -86,7 +86,7 @@ public: QWidget *outputWidget(QWidget *); QList<QWidget*> toolBarWidgets() const; - QString name() const { return tr("Search Results"); } + QString displayName() const { return tr("Search Results"); } int priorityInStatusBar() const; void visibilityChanged(bool visible); bool isEmpty() const; |