summaryrefslogtreecommitdiffstats
path: root/src/extension/implementation/implementation.h
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-08-04 23:13:40 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-08-31 14:50:39 +0000
commit2e2f1abfd59888af7749429e9016cd1768b9a0a6 (patch)
treed10e71c10ef2a8c40da5088ca25e1818e1e39706 /src/extension/implementation/implementation.h
parentSwitch Inkscape::Extension to use InxWidgets instead of InxParameters (diff)
downloadinkscape-2e2f1abfd59888af7749429e9016cd1768b9a0a6.tar.gz
inkscape-2e2f1abfd59888af7749429e9016cd1768b9a0a6.zip
cleanup includes a bit
Diffstat (limited to 'src/extension/implementation/implementation.h')
-rw-r--r--src/extension/implementation/implementation.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/extension/implementation/implementation.h b/src/extension/implementation/implementation.h
index e4922a083..21569ad3c 100644
--- a/src/extension/implementation/implementation.h
+++ b/src/extension/implementation/implementation.h
@@ -30,12 +30,12 @@ namespace Inkscape {
namespace UI {
namespace View {
class View;
-} // namespace View
-} // namespace UI
+}
+}
namespace XML {
class Node;
-} // namespace XML
+}
namespace Extension {
@@ -58,7 +58,7 @@ class ImplementationDocumentCache {
Inkscape::UI::View::View * _view;
public:
ImplementationDocumentCache (Inkscape::UI::View::View * view) { return; };
-
+
virtual ~ImplementationDocumentCache ( ) { return; };
Inkscape::UI::View::View const * view ( ) { return _view; };
};
@@ -72,7 +72,7 @@ class Implementation {
public:
// ----- Constructor / destructor -----
Implementation() = default;
-
+
virtual ~Implementation() = default;
// ----- Basic functions for all Extension -----