diff options
author | hjk <qtc-committer@nokia.com> | 2010-09-23 16:20:23 +0200 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-09-23 16:25:30 +0200 |
commit | e5ddb10316e4b54126911b5133d8e43bf1a7de42 (patch) | |
tree | 7388ba4164b0e34d6d1aa98802af7577ffd38161 /src/plugins/debugger/consolewindow.cpp | |
parent | 015a4e6da5ef1aa8aefa58ca3283ab25af18e843 (diff) | |
download | qt-creator-e5ddb10316e4b54126911b5133d8e43bf1a7de42.tar.gz |
debugger: set object names for console and log
Diffstat (limited to 'src/plugins/debugger/consolewindow.cpp')
-rw-r--r-- | src/plugins/debugger/consolewindow.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/debugger/consolewindow.cpp b/src/plugins/debugger/consolewindow.cpp index 8169e7ba2b..8a6075c082 100644 --- a/src/plugins/debugger/consolewindow.cpp +++ b/src/plugins/debugger/consolewindow.cpp @@ -58,8 +58,6 @@ #include <utils/savedaction.h> -using namespace Find; - namespace Debugger { namespace Internal { @@ -299,6 +297,7 @@ ConsoleWindow::ConsoleWindow(QWidget *parent) : QWidget(parent) { setWindowTitle(tr("Console")); + setObjectName("Console"); m_console = new Console(this); m_console->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); @@ -312,7 +311,7 @@ ConsoleWindow::ConsoleWindow(QWidget *parent) Aggregation::Aggregate *aggregate = new Aggregation::Aggregate; aggregate->add(m_console); - aggregate->add(new BaseTextFind(m_console)); + aggregate->add(new Find::BaseTextFind(m_console)); //connect(m_console, SIGNAL(statusMessageRequested(QString,int)), // this, SIGNAL(statusMessageRequested(QString,int))); |