Rename variables that refer to document from editor to document

Change-Id: I82114ffb66e29e8ac2e1b41138f6ddadfc266d07
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
Orgad Shaneh
2014-06-29 17:34:09 +03:00
committed by Orgad Shaneh
parent 2cd9a97510
commit 4f4dde55a3
3 changed files with 8 additions and 8 deletions

View File

@@ -298,9 +298,9 @@ private:
int indent;
};
QmlOutlineModel::QmlOutlineModel(QmlJSEditorDocument *editor) :
QStandardItemModel(editor),
m_editorDocument(editor)
QmlOutlineModel::QmlOutlineModel(QmlJSEditorDocument *document) :
QStandardItemModel(document),
m_editorDocument(document)
{
m_icons = Icons::instance();
const QString resourcePath = Core::ICore::resourcePath();