forked from qt-creator/qt-creator
add auto-saving of modified editors
Task-number: QTCREATORBUG-2847
This commit is contained in:
@@ -740,9 +740,9 @@ QString QmlJSEditorEditable::id() const
|
||||
return QLatin1String(QmlJSEditor::Constants::C_QMLJSEDITOR_ID);
|
||||
}
|
||||
|
||||
bool QmlJSEditorEditable::open(QString *errorString, const QString &fileName)
|
||||
bool QmlJSEditorEditable::open(QString *errorString, const QString &fileName, const QString &realFileName)
|
||||
{
|
||||
bool b = TextEditor::BaseTextEditor::open(errorString, fileName);
|
||||
bool b = TextEditor::BaseTextEditor::open(errorString, fileName, realFileName);
|
||||
editorWidget()->setMimeType(Core::ICore::instance()->mimeDatabase()->findByFile(QFileInfo(fileName)).type());
|
||||
return b;
|
||||
}
|
||||
|
Reference in New Issue
Block a user