summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 333c1af)
raw | patch | inline | side by side (parent: 333c1af)
author | ishmal <ishmal@users.sourceforge.net> | |
Tue, 13 May 2008 16:25:06 +0000 (16:25 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Tue, 13 May 2008 16:25:06 +0000 (16:25 +0000) |
src/interface.cpp | patch | blob | history |
diff --git a/src/interface.cpp b/src/interface.cpp
index 0a14fd09a7e2476f5cf931c68346795e6e0359a2..2c73592f1c3f1b48505691d3990dcaa3bd71a194 100644 (file)
--- a/src/interface.cpp
+++ b/src/interface.cpp
} 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;