summaryrefslogtreecommitdiffstats
path: root/src/extension
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2014-04-26 08:17:28 +0000
committertavmjong-free <tavmjong@free.fr>2014-04-26 08:17:28 +0000
commitb9f4d7dfe7411f551192a98a3d8151e14149c5ae (patch)
treea1a05006ed6b30e868adf3a813a6ffab02f1773e /src/extension
parentFix remaining cmake build error in 2geom (bug #1283174) (diff)
downloadinkscape-b9f4d7dfe7411f551192a98a3d8151e14149c5ae.tar.gz
inkscape-b9f4d7dfe7411f551192a98a3d8151e14149c5ae.zip
Clean up of style code: Patch from suv: SPStyle: struct -> class
(bzr r13309)
Diffstat (limited to 'src/extension')
-rw-r--r--src/extension/implementation/implementation.h2
-rw-r--r--src/extension/internal/emf-inout.h2
-rw-r--r--src/extension/internal/wmf-inout.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/extension/implementation/implementation.h b/src/extension/implementation/implementation.h
index 9d679982a..fb323cd78 100644
--- a/src/extension/implementation/implementation.h
+++ b/src/extension/implementation/implementation.h
@@ -29,7 +29,7 @@ namespace Gtk {
}
class SPDocument;
-struct SPStyle;
+class SPStyle;
namespace Inkscape {
diff --git a/src/extension/internal/emf-inout.h b/src/extension/internal/emf-inout.h
index a97cb0a54..fc98958bb 100644
--- a/src/extension/internal/emf-inout.h
+++ b/src/extension/internal/emf-inout.h
@@ -40,7 +40,7 @@ typedef struct {
} EMF_STRINGS, *PEMF_STRINGS;
typedef struct emf_device_context {
- struct SPStyle style;
+ class SPStyle style;
char *font_name;
bool stroke_set;
int stroke_mode; // enumeration from drawmode, not used if fill_set is not True
diff --git a/src/extension/internal/wmf-inout.h b/src/extension/internal/wmf-inout.h
index 3d23ca749..94a290873 100644
--- a/src/extension/internal/wmf-inout.h
+++ b/src/extension/internal/wmf-inout.h
@@ -39,7 +39,7 @@ typedef struct {
} WMF_STRINGS, *PWMF_STRINGS;
typedef struct wmf_device_context {
- struct SPStyle style;
+ class SPStyle style;
char *font_name;
bool stroke_set;
int stroke_mode; // enumeration from drawmode, not used if fill_set is not True