diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 15:18:27 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2018-06-20 09:51:42 +0000 |
| commit | 954a0083d9ce7065564c18c9788743eb0cf371f2 (patch) | |
| tree | 3f77797181a9e89dafd9c5f00f6da3dc477d244b /src/ui/interface.cpp | |
| parent | Replace typedef struct with struct in POD type declarations. (diff) | |
| download | inkscape-954a0083d9ce7065564c18c9788743eb0cf371f2.tar.gz inkscape-954a0083d9ce7065564c18c9788743eb0cf371f2.zip | |
Replace typedef enum with enum in POD type declarations.
Diffstat (limited to 'src/ui/interface.cpp')
| -rw-r--r-- | src/ui/interface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/interface.cpp b/src/ui/interface.cpp index c690e5dfc..7e64e876b 100644 --- a/src/ui/interface.cpp +++ b/src/ui/interface.cpp @@ -84,7 +84,7 @@ using Inkscape::DocumentUndo; /* Drag and Drop */ -typedef enum { +enum ui_drop_target_info { URI_LIST, SVG_XML_DATA, SVG_DATA, @@ -95,7 +95,7 @@ typedef enum { APP_X_COLOR, APP_OSWB_COLOR, APP_X_INK_PASTE -} ui_drop_target_info; +}; static GtkTargetEntry ui_drop_target_entries [] = { {(gchar *)"text/uri-list", 0, URI_LIST }, |
