From bcc1786fa29281cfd1d42d9f63ddfc2771aa8ea0 Mon Sep 17 00:00:00 2001 From: Jochen Becher Date: Wed, 9 Mar 2016 07:45:50 +0100 Subject: [PATCH] ModelEditor: Add missing namespace for class declaration Change-Id: I4a10f540042e2730c75559dfd185682d998fe714 Reviewed-by: Tobias Hunger --- src/plugins/modeleditor/extpropertiesmview.cpp | 6 ++++++ src/plugins/modeleditor/extpropertiesmview.h | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/plugins/modeleditor/extpropertiesmview.cpp b/src/plugins/modeleditor/extpropertiesmview.cpp index e0ac9d1b528..05acb4435b5 100644 --- a/src/plugins/modeleditor/extpropertiesmview.cpp +++ b/src/plugins/modeleditor/extpropertiesmview.cpp @@ -35,6 +35,9 @@ #include #include +namespace ModelEditor { +namespace Internal { + ExtPropertiesMView::ExtPropertiesMView(qmt::PropertiesView *view) : qmt::PropertiesView::MView(view) { @@ -107,3 +110,6 @@ void ExtPropertiesMView::onConfigPathChanged(const QString &path) if (modified && m_configPathInfo) m_configPathInfo->setText(tr("Model file must be reloaded.")); } + +} // namespace Interal +} // namespace ModelEditor diff --git a/src/plugins/modeleditor/extpropertiesmview.h b/src/plugins/modeleditor/extpropertiesmview.h index 61fc732377c..1ad45aff819 100644 --- a/src/plugins/modeleditor/extpropertiesmview.h +++ b/src/plugins/modeleditor/extpropertiesmview.h @@ -31,6 +31,9 @@ namespace qmt { class ProjectController; } namespace Utils { class PathChooser; } +namespace ModelEditor { +namespace Internal { + class ExtPropertiesMView : public qmt::PropertiesView::MView { Q_OBJECT @@ -52,4 +55,7 @@ private: QLabel *m_configPathInfo = 0; }; +} // namespace Interal +} // namespace ModelEditor + #endif // EXTPROPERTIESMVIEW_H