summaryrefslogtreecommitdiff
path: root/src/plugins/qt4projectmanager/wizards/html5app.cpp
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-10-16 11:02:37 +0200
committerEike Ziller <eike.ziller@digia.com>2013-10-16 12:09:59 +0200
commitebcd992577bfca1e94f207958d736490395cd82b (patch)
tree2bba49115790e80fef7e57006d3acc47cfcecf95 /src/plugins/qt4projectmanager/wizards/html5app.cpp
parent56d564c5b318ff57ee02dbf3de6ca1a22b0231ca (diff)
downloadqt-creator-ebcd992577bfca1e94f207958d736490395cd82b.tar.gz
Rename namespace Qt4ProjectManager to QmakeProjectManager
First step towards plugin renaming. Change-Id: I8ac017660a7aa2bda0d7bb7d72ab0cfceaf6cfd2 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/qt4projectmanager/wizards/html5app.cpp')
-rw-r--r--src/plugins/qt4projectmanager/wizards/html5app.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/qt4projectmanager/wizards/html5app.cpp b/src/plugins/qt4projectmanager/wizards/html5app.cpp
index 929e59ff1d..53187641d1 100644
--- a/src/plugins/qt4projectmanager/wizards/html5app.cpp
+++ b/src/plugins/qt4projectmanager/wizards/html5app.cpp
@@ -38,7 +38,7 @@
#include <coreplugin/icore.h>
#endif // CREATORLESSTEST
-namespace Qt4ProjectManager {
+namespace QmakeProjectManager {
namespace Internal {
const QString appViewerBaseName(QLatin1String("html5applicationviewer"));
@@ -192,7 +192,7 @@ QByteArray Html5App::appViewerCppFileCode(QString *errorMessage) const
QFile touchNavigavigationFile(touchNavigavigationDir + QLatin1String(touchNavigavigationFiles[i]));
if (!touchNavigavigationFile.open(QIODevice::ReadOnly)) {
if (errorMessage)
- *errorMessage = QCoreApplication::translate("Qt4ProjectManager::AbstractMobileApp",
+ *errorMessage = QCoreApplication::translate("QmakeProjectManager::AbstractMobileApp",
"Could not open template file '%1'.").arg(QLatin1String(touchNavigavigationFiles[i]));
return QByteArray();
}
@@ -213,7 +213,7 @@ QByteArray Html5App::appViewerCppFileCode(QString *errorMessage) const
QFile appViewerCppFile(path(AppViewerCppOrigin));
if (!appViewerCppFile.open(QIODevice::ReadOnly)) {
if (errorMessage)
- *errorMessage = QCoreApplication::translate("Qt4ProjectManager::AbstractMobileApp",
+ *errorMessage = QCoreApplication::translate("QmakeProjectManager::AbstractMobileApp",
"Could not open template file '%1'.").arg(path(AppViewerCppOrigin));
return QByteArray();
}
@@ -314,4 +314,4 @@ QList<DeploymentFolder> Html5App::deploymentFolders() const
const int Html5App::StubVersion = 12;
} // namespace Internal
-} // namespace Qt4ProjectManager
+} // namespace QmakeProjectManager