forked from qt-creator/qt-creator
ModelEditor: Add missing namespace for class declaration
Change-Id: I4a10f540042e2730c75559dfd185682d998fe714 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user