Remove BaseTextMark::m_init

It is never read

Change-Id: I6ac6279f8c80d5bf40c02db1ae7534230b74ceff
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Daniel Teske
2012-02-08 16:04:13 +01:00
committed by hjk
parent a0e90ad2b9
commit 8ccdb28f70
2 changed files with 1 additions and 3 deletions

View File

@@ -43,7 +43,7 @@
namespace TextEditor {
BaseTextMark::BaseTextMark()
: m_markableInterface(0), m_init(false)
: m_markableInterface(0)
{}
BaseTextMark::~BaseTextMark()
@@ -65,7 +65,6 @@ void BaseTextMark::setLocation(const QString &fileName, int line)
void BaseTextMark::init()
{
m_init = true;
Core::EditorManager *em = Core::EditorManager::instance();
connect(em, SIGNAL(editorOpened(Core::IEditor *)),
SLOT(editorOpened(Core::IEditor *)));