Skip to content
Snippets Groups Projects
Commit bcc1786f authored by Jochen Becher's avatar Jochen Becher
Browse files

ModelEditor: Add missing namespace for class declaration


Change-Id: I4a10f540042e2730c75559dfd185682d998fe714
Reviewed-by: default avatarTobias Hunger <tobias.hunger@theqtcompany.com>
parent f09f39f7
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,9 @@
#include <QFileInfo>
#include <QDir>
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("<font color=red>Model file must be reloaded.</font>"));
}
} // namespace Interal
} // namespace ModelEditor
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment