ModelEditor: Add missing namespace for class declaration

Change-Id: I4a10f540042e2730c75559dfd185682d998fe714
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Jochen Becher
2016-03-09 07:45:50 +01:00
parent f09f39f7e2
commit bcc1786fa2
2 changed files with 12 additions and 0 deletions

View File

@@ -35,6 +35,9 @@
#include <QFileInfo> #include <QFileInfo>
#include <QDir> #include <QDir>
namespace ModelEditor {
namespace Internal {
ExtPropertiesMView::ExtPropertiesMView(qmt::PropertiesView *view) ExtPropertiesMView::ExtPropertiesMView(qmt::PropertiesView *view)
: qmt::PropertiesView::MView(view) : qmt::PropertiesView::MView(view)
{ {
@@ -107,3 +110,6 @@ void ExtPropertiesMView::onConfigPathChanged(const QString &path)
if (modified && m_configPathInfo) if (modified && m_configPathInfo)
m_configPathInfo->setText(tr("<font color=red>Model file must be reloaded.</font>")); m_configPathInfo->setText(tr("<font color=red>Model file must be reloaded.</font>"));
} }
} // namespace Interal
} // namespace ModelEditor

View File

@@ -31,6 +31,9 @@
namespace qmt { class ProjectController; } namespace qmt { class ProjectController; }
namespace Utils { class PathChooser; } namespace Utils { class PathChooser; }
namespace ModelEditor {
namespace Internal {
class ExtPropertiesMView : public qmt::PropertiesView::MView class ExtPropertiesMView : public qmt::PropertiesView::MView
{ {
Q_OBJECT Q_OBJECT
@@ -52,4 +55,7 @@ private:
QLabel *m_configPathInfo = 0; QLabel *m_configPathInfo = 0;
}; };
} // namespace Interal
} // namespace ModelEditor
#endif // EXTPROPERTIESMVIEW_H #endif // EXTPROPERTIESMVIEW_H