diff --git a/src/plugins/coreplugin/editormanager/openeditorsmodel.h b/src/plugins/coreplugin/editormanager/openeditorsmodel.h index f32096c721f..b509e818bf2 100644 --- a/src/plugins/coreplugin/editormanager/openeditorsmodel.h +++ b/src/plugins/coreplugin/editormanager/openeditorsmodel.h @@ -60,7 +60,7 @@ public: QModelIndex firstRestoredEditor() const; struct CORE_EXPORT Entry { - Entry():editor(0){} + Entry() : editor(0) {} IEditor *editor; QString fileName() const; QString displayName() const; @@ -71,7 +71,7 @@ public: }; QList entries() const { return m_editors; } - inline IEditor *editorAt(int row) const { return m_editors.at(row).editor; } + IEditor *editorAt(int row) const { return m_editors.at(row).editor; } void removeEditor(IEditor *editor); void removeEditor(const QModelIndex &index); @@ -101,7 +101,7 @@ private: const QIcon m_unlockedIcon; QList m_editors; - QListm_duplicateEditors; + QList m_duplicateEditors; }; } // namespace Core