aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-11-22 06:58:35 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-11-22 06:58:35 +0800
commit076b7c45131482b87d18963d34d035435491ee8d (patch)
treeda974afa63893d6bf630ea58ec93aa307a34b2c4 /widgets/misc
parentab0ea462f39d13d56f10ccefeae882cc001469e4 (diff)
downloadgsoc2013-evolution-076b7c45131482b87d18963d34d035435491ee8d.tar
gsoc2013-evolution-076b7c45131482b87d18963d34d035435491ee8d.tar.gz
gsoc2013-evolution-076b7c45131482b87d18963d34d035435491ee8d.tar.bz2
gsoc2013-evolution-076b7c45131482b87d18963d34d035435491ee8d.tar.lz
gsoc2013-evolution-076b7c45131482b87d18963d34d035435491ee8d.tar.xz
gsoc2013-evolution-076b7c45131482b87d18963d34d035435491ee8d.tar.zst
gsoc2013-evolution-076b7c45131482b87d18963d34d035435491ee8d.zip
Fix a mistyped macro.
svn path=/branches/kill-bonobo/; revision=36809
Diffstat (limited to 'widgets/misc')
-rw-r--r--widgets/misc/e-action-combo-box.c4
-rw-r--r--widgets/misc/e-action-combo-box.h12
2 files changed, 8 insertions, 8 deletions
diff --git a/widgets/misc/e-action-combo-box.c b/widgets/misc/e-action-combo-box.c
index e826fb2a54..b3bc5a78a9 100644
--- a/widgets/misc/e-action-combo-box.c
+++ b/widgets/misc/e-action-combo-box.c
@@ -24,7 +24,7 @@
#define E_ACTION_COMBO_BOX_GET_PRIVATE(obj) \
(G_TYPE_INSTANCE_GET_PRIVATE \
- ((obj), E_ACTION_TYPE_COMBO_BOX, EActionComboBoxPrivate))
+ ((obj), E_TYPE_ACTION_COMBO_BOX, EActionComboBoxPrivate))
enum {
COLUMN_ACTION,
@@ -422,7 +422,7 @@ e_action_combo_box_new (void)
GtkWidget *
e_action_combo_box_new_with_action (GtkRadioAction *action)
{
- return g_object_new (E_ACTION_TYPE_COMBO_BOX, "action", action, NULL);
+ return g_object_new (E_TYPE_ACTION_COMBO_BOX, "action", action, NULL);
}
GtkRadioAction *
diff --git a/widgets/misc/e-action-combo-box.h b/widgets/misc/e-action-combo-box.h
index 7327c4723b..c3e6941ca6 100644
--- a/widgets/misc/e-action-combo-box.h
+++ b/widgets/misc/e-action-combo-box.h
@@ -28,23 +28,23 @@
#include <gtk/gtk.h>
/* Standard GObject macros */
-#define E_ACTION_TYPE_COMBO_BOX \
+#define E_TYPE_ACTION_COMBO_BOX \
(e_action_combo_box_get_type ())
#define E_ACTION_COMBO_BOX(obj) \
(G_TYPE_CHECK_INSTANCE_CAST \
- ((obj), E_ACTION_TYPE_COMBO_BOX, EActionComboBox))
+ ((obj), E_TYPE_ACTION_COMBO_BOX, EActionComboBox))
#define E_ACTION_COMBO_BOX_CLASS(cls) \
(G_TYPE_CHECK_CLASS_CAST \
- ((cls), E_ACTION_TYPE_COMBO_BOX, EActionComboBoxClass))
+ ((cls), E_TYPE_ACTION_COMBO_BOX, EActionComboBoxClass))
#define E_ACTION_IS_COMBO_BOX(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE \
- ((obj), E_ACTION_TYPE_COMBO_BOX))
+ ((obj), E_TYPE_ACTION_COMBO_BOX))
#define E_ACTION_IS_COMBO_BOX_CLASS(cls) \
(G_TYPE_CHECK_CLASS_TYPE \
- ((cls), E_ACTION_TYPE_COMBO_BOX))
+ ((cls), E_TYPE_ACTION_COMBO_BOX))
#define E_ACTION_COMBO_BOX_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS \
- ((obj), E_ACTION_TYPE_COMBO_BOX, EActionComboBoxClass))
+ ((obj), E_TYPE_ACTION_COMBO_BOX, EActionComboBoxClass))
G_BEGIN_DECLS