aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/resourceeditor/resourceeditorfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/resourceeditor/resourceeditorfactory.cpp')
-rw-r--r--src/plugins/resourceeditor/resourceeditorfactory.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/plugins/resourceeditor/resourceeditorfactory.cpp b/src/plugins/resourceeditor/resourceeditorfactory.cpp
index 10a6f58271..1116db1445 100644
--- a/src/plugins/resourceeditor/resourceeditorfactory.cpp
+++ b/src/plugins/resourceeditor/resourceeditorfactory.cpp
@@ -24,21 +24,21 @@
****************************************************************************/
#include "resourceeditorfactory.h"
-#include "resourceeditorw.h"
-#include "resourceeditorplugin.h"
+
#include "resourceeditorconstants.h"
+#include "resourceeditorplugin.h"
+#include "resourceeditorw.h"
#include <coreplugin/editormanager/editormanager.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <utils/fsengine/fileiconprovider.h>
#include <QCoreApplication>
-#include <QFileInfo>
-#include <qdebug.h>
-using namespace ResourceEditor::Internal;
using namespace ResourceEditor::Constants;
+namespace ResourceEditor::Internal {
+
ResourceEditorFactory::ResourceEditorFactory(ResourceEditorPlugin *plugin)
{
setId(RESOURCEEDITOR_ID);
@@ -52,3 +52,5 @@ ResourceEditorFactory::ResourceEditorFactory(ResourceEditorPlugin *plugin)
return new ResourceEditorW(Core::Context(C_RESOURCEEDITOR), plugin);
});
}
+
+} // ResourceEditor::Internal