summaryrefslogtreecommitdiffhomepage
path: root/mixgtk/mixgtk_widgets.c
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2014-08-03 03:11:52 +0200
committerjao <jao@gnu.org>2014-08-03 03:11:52 +0200
commit45ada25e46d0dfd142c85d9f0ffe98998fb59c4e (patch)
tree236bd15af652118c7b4320fce5c8fdba9fa9c092 /mixgtk/mixgtk_widgets.c
parente9ceef1491a43c990f845db27519c3c8646fc8ae (diff)
downloadmdk-45ada25e46d0dfd142c85d9f0ffe98998fb59c4e.tar.gz
mdk-45ada25e46d0dfd142c85d9f0ffe98998fb59c4e.tar.bz2
Apparently tautological comparisons fixed (bug #42871)
Diffstat (limited to 'mixgtk/mixgtk_widgets.c')
-rw-r--r--mixgtk/mixgtk_widgets.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/mixgtk/mixgtk_widgets.c b/mixgtk/mixgtk_widgets.c
index 7e0b8dc..2bfff34 100644
--- a/mixgtk/mixgtk_widgets.c
+++ b/mixgtk/mixgtk_widgets.c
@@ -1,7 +1,7 @@
/* -*-c-*- -------------- mixgtk_widgets.c :
* Implementation of the functions declared in mixgtk_widgets.h
* ------------------------------------------------------------------
- * Copyright (C) 2001, 2004, 2006, 2007 Free Software Foundation, Inc.
+ * Copyright (C) 2001, 2004, 2006, 2007, 2014 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -124,7 +124,7 @@ mixgtk_widget_factory_init (void)
GtkWidget *
mixgtk_widget_factory_get (mixgtk_dialog_id_t dlg, mixgtk_widget_id_t widget)
{
- g_assert (widget < WIDGET_NO_);
+ g_assert ((long)widget < WIDGET_NO_);
return mixgtk_widget_factory_get_child_by_name (dlg, names_[widget]);
}
@@ -148,5 +148,3 @@ mixgtk_widget_factory_get_child_by_name (mixgtk_dialog_id_t dlg,
if (!xml_[dlg]) init_xml_ (dlg);
return glade_xml_get_widget (xml_[dlg], name);
}
-
-