forked from qt-creator/qt-creator
Use internal namespace in VCSBase more consistently
Change-Id: I61de9796aaeb9484b44029c5f1d46e69834a04c3 Reviewed-by: Hugues Delorme <delorme.hugues@fougsys.fr>
This commit is contained in:
committed by
Hugues Delorme
parent
2327b395d0
commit
f696312368
@@ -49,9 +49,11 @@
|
||||
*/
|
||||
|
||||
namespace VCSBase {
|
||||
namespace Internal {
|
||||
|
||||
struct BaseVCSEditorFactoryPrivate
|
||||
class BaseVCSEditorFactoryPrivate
|
||||
{
|
||||
public:
|
||||
BaseVCSEditorFactoryPrivate(const VCSBaseEditorParameters *t);
|
||||
|
||||
const VCSBaseEditorParameters *m_type;
|
||||
@@ -69,8 +71,10 @@ BaseVCSEditorFactoryPrivate::BaseVCSEditorFactoryPrivate(const VCSBaseEditorPara
|
||||
{
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
BaseVCSEditorFactory::BaseVCSEditorFactory(const VCSBaseEditorParameters *t)
|
||||
: d(new BaseVCSEditorFactoryPrivate(t))
|
||||
: d(new Internal::BaseVCSEditorFactoryPrivate(t))
|
||||
{
|
||||
d->m_displayName = QCoreApplication::translate("VCS", t->displayName);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user