forked from qt-creator/qt-creator
Editors: Remove some unused factory variables
Change-Id: I6df843561c4d502b3d7c1844d65a59ad2855f0c0 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
@@ -31,7 +31,6 @@
|
||||
|
||||
#include "cmakefilecompletionassist.h"
|
||||
#include "cmakehighlighter.h"
|
||||
#include "cmakeeditorfactory.h"
|
||||
#include "cmakeprojectconstants.h"
|
||||
#include "cmakeproject.h"
|
||||
|
||||
@@ -68,7 +67,7 @@ CMakeEditor::CMakeEditor(CMakeEditorWidget *editor)
|
||||
Core::IEditor *CMakeEditor::duplicate()
|
||||
{
|
||||
CMakeEditorWidget *w = qobject_cast<CMakeEditorWidget*>(widget());
|
||||
CMakeEditorWidget *ret = new CMakeEditorWidget(w->factory());
|
||||
CMakeEditorWidget *ret = new CMakeEditorWidget();
|
||||
ret->duplicateFrom(w);
|
||||
TextEditor::TextEditorSettings::initializeEditor(ret);
|
||||
return ret->editor();
|
||||
@@ -116,8 +115,8 @@ void CMakeEditor::build()
|
||||
// CMakeEditor
|
||||
//
|
||||
|
||||
CMakeEditorWidget::CMakeEditorWidget(CMakeEditorFactory *factory, QWidget *parent)
|
||||
: BaseTextEditorWidget(parent), m_factory(factory)
|
||||
CMakeEditorWidget::CMakeEditorWidget(QWidget *parent)
|
||||
: BaseTextEditorWidget(parent)
|
||||
{
|
||||
QSharedPointer<CMakeDocument> doc(new CMakeDocument);
|
||||
doc->setMimeType(QLatin1String(CMakeProjectManager::Constants::CMAKEMIMETYPE));
|
||||
|
||||
@@ -30,8 +30,6 @@
|
||||
#ifndef CMAKEEDITOR_H
|
||||
#define CMAKEEDITOR_H
|
||||
|
||||
#include "cmakeeditorfactory.h"
|
||||
|
||||
#include <texteditor/basetextdocument.h>
|
||||
#include <texteditor/basetexteditor.h>
|
||||
#include <texteditor/codeassist/completionassistprovider.h>
|
||||
@@ -71,12 +69,10 @@ class CMakeEditorWidget : public TextEditor::BaseTextEditorWidget
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
CMakeEditorWidget(CMakeEditorFactory *factory, QWidget *parent = 0);
|
||||
CMakeEditorWidget(QWidget *parent = 0);
|
||||
|
||||
bool save(const QString &fileName = QString());
|
||||
|
||||
CMakeEditorFactory *factory() { return m_factory; }
|
||||
|
||||
Link findLinkAt(const QTextCursor &cursor, bool resolveTarget = true, bool inNextSplit = false);
|
||||
|
||||
protected:
|
||||
@@ -87,7 +83,6 @@ public slots:
|
||||
void unCommentSelection();
|
||||
|
||||
private:
|
||||
CMakeEditorFactory *m_factory;
|
||||
Utils::CommentDefinition m_commentDefinition;
|
||||
};
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ CMakeEditorFactory::CMakeEditorFactory(CMakeManager *manager)
|
||||
|
||||
Core::IEditor *CMakeEditorFactory::createEditor()
|
||||
{
|
||||
CMakeEditorWidget *rc = new CMakeEditorWidget(this);
|
||||
CMakeEditorWidget *rc = new CMakeEditorWidget();
|
||||
TextEditor::TextEditorSettings::initializeEditor(rc);
|
||||
return rc->editor();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user