summaryrefslogtreecommitdiff
path: root/src/plugins/glsleditor/glsleditor.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2013-08-23 13:56:24 +0200
committerhjk <hjk121@nokiamail.com>2013-08-26 16:25:35 +0200
commit6a4e4cfb254317708997a40b44853f810a5278a8 (patch)
tree0ec40deb124a283feecccf528134cb143c471765 /src/plugins/glsleditor/glsleditor.h
parenta94aba2a97b8906cc8b36bde14a4456a54551e3d (diff)
downloadqt-creator-6a4e4cfb254317708997a40b44853f810a5278a8.tar.gz
GLSLEditor: Remove needlessly exported symbols
... and move code into Internal namespace. Change-Id: I02a90c33db0ffe574af43bdb8d8e37b4159f8f0f Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/glsleditor/glsleditor.h')
-rw-r--r--src/plugins/glsleditor/glsleditor.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/plugins/glsleditor/glsleditor.h b/src/plugins/glsleditor/glsleditor.h
index dad0ca2b9e..269b86eb21 100644
--- a/src/plugins/glsleditor/glsleditor.h
+++ b/src/plugins/glsleditor/glsleditor.h
@@ -30,8 +30,6 @@
#ifndef GLSLEDITOR_H
#define GLSLEDITOR_H
-#include "glsleditor_global.h"
-
#include <texteditor/basetexteditor.h>
#include <QSharedPointer>
@@ -46,19 +44,17 @@ namespace GLSL {
class Engine;
class TranslationUnitAST;
class Scope;
-}
+} // namespace GLSL
-namespace Core {
-class ICore;
-}
+namespace Core { class ICore; }
namespace GLSLEditor {
-class GLSLTextEditorWidget;
namespace Internal {
+
class GLSLEditorEditable;
-}
+class GLSLTextEditorWidget;
-class GLSLEDITOR_EXPORT Document
+class Document
{
public:
typedef QSharedPointer<Document> Ptr;
@@ -87,7 +83,7 @@ private:
friend class GLSLTextEditorWidget;
};
-class GLSLEDITOR_EXPORT GLSLTextEditorWidget : public TextEditor::BaseTextEditorWidget
+class GLSLTextEditorWidget : public TextEditor::BaseTextEditorWidget
{
Q_OBJECT
@@ -127,6 +123,7 @@ private:
Document::Ptr m_glslDocument;
};
+} // namespace Internal
} // namespace GLSLEditor
#endif // GLSLEDITOR_H