BaseTextmark: Remove never called function

The implementation probably is broken anyway

Change-Id: I54adaed8b699057f75daf7ee48bd0d8f9e885d20
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Daniel Teske
2012-02-08 14:39:25 +01:00
committed by hjk
parent 8ccdb28f70
commit b1f3c69c68
2 changed files with 0 additions and 18 deletions

View File

@@ -123,20 +123,4 @@ void BaseTextMark::updateMarker()
m_markableInterface->updateMark(this);
}
void BaseTextMark::moveMark(const QString & /* filename */, int /* line */)
{
Core::EditorManager *em = Core::EditorManager::instance();
if (!m_init) {
connect(em, SIGNAL(editorOpened(Core::IEditor *)),
SLOT(editorOpened(Core::IEditor *)));
m_init = true;
}
if (m_markableInterface)
m_markableInterface->removeMark(this);
foreach (Core::IEditor *editor, em->openedEditors())
editorOpened(editor);
}
} // namespace TextEditor