diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 15:11:19 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2018-06-20 09:51:42 +0000 |
| commit | af7e9ecd1fdd9a3499da7fc2721c4e4a74d8542f (patch) | |
| tree | 1cd0e24fa031a9231b800b0b41102a5d95e7082c /src/attributes.cpp | |
| parent | Replace functions with methods in SPColor. (diff) | |
| download | inkscape-af7e9ecd1fdd9a3499da7fc2721c4e4a74d8542f.tar.gz inkscape-af7e9ecd1fdd9a3499da7fc2721c4e4a74d8542f.zip | |
Replace typedef struct with struct in POD type declarations.
Diffstat (limited to 'src/attributes.cpp')
| -rw-r--r-- | src/attributes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/attributes.cpp b/src/attributes.cpp index 0c16916f9..b2c676e88 100644 --- a/src/attributes.cpp +++ b/src/attributes.cpp @@ -15,10 +15,10 @@ #include <glib.h> // g_assert() #include "attributes.h" -typedef struct { +struct SPStyleProp { gint code; gchar const *name; -} SPStyleProp; +}; /** * Lookup dictionary for attributes/properties. |
