#879 scintilla editor incorrectly reported a freshly opened file as modified

master
Marius Kintel 2014-08-24 17:40:46 -04:00
parent 844edc9b78
commit 99bc04c9ab
1 changed files with 2 additions and 1 deletions

View File

@ -30,8 +30,9 @@ ScintillaEditor::ScintillaEditor(QWidget *parent) : EditorInterface(parent)
}
void ScintillaEditor::setPlainText(const QString &text)
{
{
qsci->setText(text);
setContentModified(false);
}
QString ScintillaEditor::toPlainText()