aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg/egg-toolbar-editor.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-06-02 01:19:10 +0800
committerChristian Persch <chpe@src.gnome.org>2005-06-02 01:19:10 +0800
commit9bad75b60b731ab75c99b2b8e90cf7ee02321f64 (patch)
tree8382fd921ea359a8949f27803cb3d264ef387ebb /lib/egg/egg-toolbar-editor.c
parentcf4acf385ff54b405b0a582aa4bff2f32ff8d89a (diff)
downloadgsoc2013-epiphany-9bad75b60b731ab75c99b2b8e90cf7ee02321f64.tar
gsoc2013-epiphany-9bad75b60b731ab75c99b2b8e90cf7ee02321f64.tar.gz
gsoc2013-epiphany-9bad75b60b731ab75c99b2b8e90cf7ee02321f64.tar.bz2
gsoc2013-epiphany-9bad75b60b731ab75c99b2b8e90cf7ee02321f64.tar.lz
gsoc2013-epiphany-9bad75b60b731ab75c99b2b8e90cf7ee02321f64.tar.xz
gsoc2013-epiphany-9bad75b60b731ab75c99b2b8e90cf7ee02321f64.tar.zst
gsoc2013-epiphany-9bad75b60b731ab75c99b2b8e90cf7ee02321f64.zip
Fix more signed/unsigned problems with gcc 4.0. Patch by Martin
2005-06-01 Christian Persch <chpe@cvs.gnome.org> * lib/egg/egg-editable-toolbar.c: (drag_data_get_cb), (drag_data_received_cb): * lib/egg/egg-toolbar-editor.c: (drag_data_get_cb), (parse_item_list), (egg_toolbar_editor_load_actions): * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_to_xml), (egg_toolbars_model_save), (parse_item_list), (parse_toolbars): * src/ephy-notebook.c: * src/ephy-window.c: Fix more signed/unsigned problems with gcc 4.0. Patch by Martin Kretzschmar, bug #306169.
Diffstat (limited to 'lib/egg/egg-toolbar-editor.c')
-rwxr-xr-xlib/egg/egg-toolbar-editor.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/egg/egg-toolbar-editor.c b/lib/egg/egg-toolbar-editor.c
index 185703819..bd79724a8 100755
--- a/lib/egg/egg-toolbar-editor.c
+++ b/lib/egg/egg-toolbar-editor.c
@@ -366,7 +366,8 @@ drag_data_get_cb (GtkWidget *widget,
}
gtk_selection_data_set (selection_data,
- selection_data->target, 8, target, strlen (target));
+ selection_data->target, 8,
+ (const guchar *)target, strlen (target));
}
static gchar *
@@ -602,12 +603,12 @@ parse_item_list (EggToolbarEditor *t,
{
while (child)
{
- if (xmlStrEqual (child->name, "toolitem"))
+ if (xmlStrEqual (child->name, (const xmlChar*) "toolitem"))
{
xmlChar *name;
- name = xmlGetProp (child, "name");
- egg_toolbar_editor_add_action (t, name);
+ name = xmlGetProp (child, (const xmlChar*) "name");
+ egg_toolbar_editor_add_action (t, (const char*)name);
xmlFree (name);
}
child = child->next;
@@ -675,7 +676,7 @@ egg_toolbar_editor_load_actions (EggToolbarEditor *editor,
while (child)
{
- if (xmlStrEqual (child->name, "available"))
+ if (xmlStrEqual (child->name, (const xmlChar*) "available"))
{
parse_item_list (editor, child->children);
}