forked from qt-creator/qt-creator
UI files: Do not polute the global Ui namespace
Make sure all ui-files are in the plugin's internal namespace. Change-Id: Ifb2c3093441e8feb89e46f52fbb386fc316cfd13 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -41,6 +41,7 @@
|
||||
#include <coreplugin/iversioncontrol.h>
|
||||
|
||||
namespace VCSBase {
|
||||
namespace Internal {
|
||||
|
||||
class VcsConfigurationPagePrivate
|
||||
{
|
||||
@@ -58,9 +59,11 @@ public:
|
||||
const Core::IVersionControl *m_versionControl;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
VcsConfigurationPage::VcsConfigurationPage(const Core::IVersionControl *vc, QWidget *parent) :
|
||||
QWizardPage(parent),
|
||||
d(new VcsConfigurationPagePrivate)
|
||||
d(new Internal::VcsConfigurationPagePrivate)
|
||||
{
|
||||
Q_ASSERT(vc);
|
||||
setTitle(tr("Configuration"));
|
||||
|
||||
Reference in New Issue
Block a user