Mercurial: Use explicit namespace in cpp files

Change-Id: Ic6aaa88dfdc33966e0e8007a9420461811ae48c2
Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
Orgad Shaneh
2014-11-04 22:12:40 +02:00
committed by Orgad Shaneh
parent 4161e7f9d9
commit 499d7219e0
9 changed files with 47 additions and 12 deletions

View File

@@ -31,7 +31,8 @@
#include "authenticationdialog.h"
#include "ui_authenticationdialog.h"
using namespace Mercurial::Internal;
namespace Mercurial {
namespace Internal {
AuthenticationDialog::AuthenticationDialog(const QString &username, const QString &password, QWidget *parent) :
QDialog(parent),
@@ -61,3 +62,6 @@ QString AuthenticationDialog::getPassword()
{
return ui->password->text();
}
} // namespace Internal
} // namespace Mercurial