diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2008-05-13 16:25:06 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2008-05-13 16:25:06 +0000 |
| commit | 9bc4d5f7284c3ab6247fb386b97de333946bdc91 (patch) | |
| tree | cf4666540f39b68d20f6bf1be97d12194d430798 /src/interface.cpp | |
| parent | Fix for future testing. (diff) | |
| download | inkscape-9bc4d5f7284c3ab6247fb386b97de333946bdc91.tar.gz inkscape-9bc4d5f7284c3ab6247fb386b97de333946bdc91.zip | |
remove warnings
(bzr r5667)
Diffstat (limited to 'src/interface.cpp')
| -rw-r--r-- | src/interface.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/interface.cpp b/src/interface.cpp index 0a14fd09a..2c73592f1 100644 --- a/src/interface.cpp +++ b/src/interface.cpp @@ -89,15 +89,15 @@ typedef enum { } ui_drop_target_info; static GtkTargetEntry ui_drop_target_entries [] = { - {"text/uri-list", 0, URI_LIST}, - {"image/svg+xml", 0, SVG_XML_DATA}, - {"image/svg", 0, SVG_DATA}, - {"image/png", 0, PNG_DATA}, - {"image/jpeg", 0, JPEG_DATA}, + {(gchar *)"text/uri-list", 0, URI_LIST }, + {(gchar *)"image/svg+xml", 0, SVG_XML_DATA }, + {(gchar *)"image/svg", 0, SVG_DATA }, + {(gchar *)"image/png", 0, PNG_DATA }, + {(gchar *)"image/jpeg", 0, JPEG_DATA }, #if ENABLE_MAGIC_COLORS - {"application/x-inkscape-color", 0, APP_X_INKY_COLOR}, + {(gchar *)"application/x-inkscape-color", 0, APP_X_INKY_COLOR}, #endif // ENABLE_MAGIC_COLORS - {"application/x-color", 0, APP_X_COLOR} + {(gchar *)"application/x-color", 0, APP_X_COLOR } }; static GtkTargetEntry *completeDropTargets = 0; |
