debugger: remove standalone option

This commit is contained in:
hjk
2010-02-04 10:36:58 +01:00
parent 3251309ada
commit 70a948abf5
4 changed files with 2 additions and 58 deletions

View File

@@ -45,18 +45,13 @@
#include <QtGui/QSyntaxHighlighter>
#include <QtGui/QTextBlock>
#ifndef GDBDEBUGGERLEAN
#include <aggregation/aggregate.h>
#include <coreplugin/findplaceholder.h>
#include <find/basetextfind.h>
using namespace Find;
#endif // GDBDEBUGGERLEAN
using namespace Debugger;
using namespace Debugger::Internal;
using namespace Find;
static QChar charForChannel(int channel)
{
@@ -317,12 +312,9 @@ DebuggerOutputWindow::DebuggerOutputWindow(QWidget *parent)
layout->setMargin(0);
layout->setSpacing(0);
layout->addWidget(m_splitter);
#ifndef GDBDEBUGGERLEAN
layout->addWidget(new Core::FindToolBarPlaceHolder(this));
#endif
setLayout(layout);
#ifndef GDBDEBUGGERLEAN
Aggregation::Aggregate *aggregate = new Aggregation::Aggregate;
aggregate->add(m_combinedText);
aggregate->add(new BaseTextFind(m_combinedText));
@@ -330,7 +322,6 @@ DebuggerOutputWindow::DebuggerOutputWindow(QWidget *parent)
aggregate = new Aggregation::Aggregate;
aggregate->add(m_inputText);
aggregate->add(new BaseTextFind(m_inputText));
#endif
connect(m_inputText, SIGNAL(statusMessageRequested(QString,int)),
this, SIGNAL(statusMessageRequested(QString,int)));