aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-unicode.c
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2007-10-31 20:30:29 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2007-10-31 20:30:29 +0800
commitbe99f3db8925de2016528d50f32339a73fcd10c8 (patch)
tree083a23213c8ab1dcfb72a3f761b2b27af1f539fc /widgets/misc/e-unicode.c
parent907d1861ab0ffe7e90601f6a9f9e5ef339969301 (diff)
downloadgsoc2013-evolution-be99f3db8925de2016528d50f32339a73fcd10c8.tar
gsoc2013-evolution-be99f3db8925de2016528d50f32339a73fcd10c8.tar.gz
gsoc2013-evolution-be99f3db8925de2016528d50f32339a73fcd10c8.tar.bz2
gsoc2013-evolution-be99f3db8925de2016528d50f32339a73fcd10c8.tar.lz
gsoc2013-evolution-be99f3db8925de2016528d50f32339a73fcd10c8.tar.xz
gsoc2013-evolution-be99f3db8925de2016528d50f32339a73fcd10c8.tar.zst
gsoc2013-evolution-be99f3db8925de2016528d50f32339a73fcd10c8.zip
Warning fixes: - NULL vs 0 vs FALSE - ANSIfication of function
2007-10-29 Kjartan Maraas <kmaraas@gnome.org> * e-activity-handler.c: (e_activity_handler_new): * e-canvas.c: (e_canvas_new), (emit_event), (pick_current_item), (e_canvas_button): * e-combo-button.c: (menu_detacher), (impl_destroy), (impl_button_press_event): * e-combo-cell-editable.c: (e_combo_cell_editable_new): * e-expander.c: (e_expander_init), (e_expander_size_request), (e_expander_size_allocate), (e_expander_button_press), (e_expander_focus): * e-gui-utils.c: (e_popup_menu), (e_container_change_tab_order_callback): * e-image-chooser.c: (image_drag_data_received_cb): * e-info-label.c: (e_info_label_new): * e-map.c: (e_map_key_press), (e_map_new), (update_render_pixbuf), (blowup_window_area), (zoom_do), (set_scroll_area): * e-pilot-settings.c: (e_pilot_settings_get_source): * e-printable.c: (e_printable_will_fit): * e-reflow.c: (items_inserted), (model_changed), (set_empty), (e_reflow_event), (e_reflow_draw): * e-search-bar.c: (set_option): * e-search-bar.h: * e-unicode.c: (e_xml_get_translated_utf8_string_prop_by_name): Warning fixes: - NULL vs 0 vs FALSE - ANSIfication of function declarations. - Use non-deprecated GSignal functions - Don't mix different enum types svn path=/trunk/; revision=34466
Diffstat (limited to 'widgets/misc/e-unicode.c')
-rw-r--r--widgets/misc/e-unicode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/misc/e-unicode.c b/widgets/misc/e-unicode.c
index 00d2eccef1..cdbd715871 100644
--- a/widgets/misc/e-unicode.c
+++ b/widgets/misc/e-unicode.c
@@ -2029,8 +2029,8 @@ e_xml_get_translated_utf8_string_prop_by_name (const xmlNode *parent, const xmlC
gchar *ret_val = NULL;
gchar *combined_name;
- g_return_val_if_fail (parent != NULL, 0);
- g_return_val_if_fail (prop_name != NULL, 0);
+ g_return_val_if_fail (parent != NULL, NULL);
+ g_return_val_if_fail (prop_name != NULL, NULL);
prop = xmlGetProp ((xmlNode *) parent, prop_name);
if (prop != NULL) {