[gtk+] GtkModelButton: fix up naming
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] GtkModelButton: fix up naming
- Date: Sat, 22 Feb 2014 17:52:01 +0000 (UTC)
commit 1de4c698cc1adce801e991755fce9af5c58aef13
Author: Matthias Clasen <mclasen redhat com>
Date: Sat Feb 22 12:08:45 2014 -0500
GtkModelButton: fix up naming
The convention we follow is that the PROP_foo define should
match the property name. Therefore, change PROP_MODEL to
PROP_MENU_MODEL to match "menu-model".
gtk/gtkmenubutton.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gtk/gtkmenubutton.c b/gtk/gtkmenubutton.c
index 4664084..559a12a 100644
--- a/gtk/gtkmenubutton.c
+++ b/gtk/gtkmenubutton.c
@@ -135,7 +135,7 @@ enum
{
PROP_0,
PROP_POPUP,
- PROP_MODEL,
+ PROP_MENU_MODEL,
PROP_ALIGN_WIDGET,
PROP_DIRECTION,
PROP_USE_POPOVER,
@@ -159,7 +159,7 @@ gtk_menu_button_set_property (GObject *object,
case PROP_POPUP:
gtk_menu_button_set_popup (self, g_value_get_object (value));
break;
- case PROP_MODEL:
+ case PROP_MENU_MODEL:
gtk_menu_button_set_menu_model (self, g_value_get_object (value));
break;
case PROP_ALIGN_WIDGET:
@@ -192,7 +192,7 @@ gtk_menu_button_get_property (GObject *object,
case PROP_POPUP:
g_value_set_object (value, priv->menu);
break;
- case PROP_MODEL:
+ case PROP_MENU_MODEL:
g_value_set_object (value, priv->model);
break;
case PROP_ALIGN_WIDGET:
@@ -519,7 +519,7 @@ gtk_menu_button_class_init (GtkMenuButtonClass *klass)
* Since: 3.6
*/
g_object_class_install_property (gobject_class,
- PROP_MODEL,
+ PROP_MENU_MODEL,
g_param_spec_object ("menu-model",
P_("Menu model"),
P_("The model from which the popup is made."),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]