aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2007-02-09 03:34:11 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2007-02-09 03:34:11 +0800
commitd328ab72d554fe60c892ddc8c278340c027b51dc (patch)
treef8513f9a30b036d3ff3c3c65be8d9f842ab1f81b /widgets/text
parent9be6776a1c431142621c5838182fd967febd880e (diff)
downloadgsoc2013-evolution-d328ab72d554fe60c892ddc8c278340c027b51dc.tar
gsoc2013-evolution-d328ab72d554fe60c892ddc8c278340c027b51dc.tar.gz
gsoc2013-evolution-d328ab72d554fe60c892ddc8c278340c027b51dc.tar.bz2
gsoc2013-evolution-d328ab72d554fe60c892ddc8c278340c027b51dc.tar.lz
gsoc2013-evolution-d328ab72d554fe60c892ddc8c278340c027b51dc.tar.xz
gsoc2013-evolution-d328ab72d554fe60c892ddc8c278340c027b51dc.tar.zst
gsoc2013-evolution-d328ab72d554fe60c892ddc8c278340c027b51dc.zip
** Fixes bug #357216
2006-02-08 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #357216 * widgets/text/e-entry.c: Remove "font", "fontset", and "gdk_font" properties, since they forward gets and sets to non-existant properties in entry->item. * widgets/table/e-table-field-chooser-item.c: * widgets/table/e-table-field-chooser-item.h: * widgets/table/e-table-group-container.c: * widgets/table/e-table-group-container.h: Replace deprecated GdkFont with PangoFontDescription. * widgets/table/e-table-header-item.c: * widgets/table/e-table-header-item.h: Replace deprecated GdkFont with PangoFontDescription. Rename "fontset" property to "font-desc", and change the property type to a boxed PangoFontDescription. svn path=/trunk/; revision=33185
Diffstat (limited to 'widgets/text')
-rw-r--r--widgets/text/e-entry.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/widgets/text/e-entry.c b/widgets/text/e-entry.c
index 5601440b8d..f0653a39b6 100644
--- a/widgets/text/e-entry.c
+++ b/widgets/text/e-entry.c
@@ -70,9 +70,6 @@ enum {
PROP_MODEL,
PROP_EVENT_PROCESSOR,
PROP_TEXT,
- PROP_FONT,
- PROP_FONTSET,
- PROP_FONT_GDK,
PROP_ANCHOR,
PROP_JUSTIFICATION,
PROP_X_OFFSET,
@@ -880,10 +877,6 @@ et_get_property (GObject *object,
g_object_get_property (G_OBJECT (item), "text", value);
break;
- case PROP_FONT_GDK:
- g_object_get_property (G_OBJECT (item), "font_gdk", value);
- break;
-
case PROP_JUSTIFICATION:
g_object_get_property (G_OBJECT (item), "justification", value);
break;
@@ -986,25 +979,6 @@ et_set_property (GObject *object,
gtk_widget_queue_resize (widget);
break;
- case PROP_FONT:
- g_object_set_property (G_OBJECT (item), "font", value);
- d(g_print("%s: font: %s\n", __FUNCTION__, g_value_get_string (value)));
- if (entry->priv->emulate_label_resize)
- gtk_widget_queue_resize (widget);
- break;
-
- case PROP_FONTSET:
- g_object_set_property (G_OBJECT (item), "fontset", value);
- if (entry->priv->emulate_label_resize)
- gtk_widget_queue_resize (widget);
- break;
-
- case PROP_FONT_GDK:
- g_object_set_property (G_OBJECT (item), "font_gdk", value);
- if (entry->priv->emulate_label_resize)
- gtk_widget_queue_resize (widget);
- break;
-
case PROP_JUSTIFICATION:
entry->priv->justification = g_value_get_enum (value);
g_object_get(item,
@@ -1251,27 +1225,6 @@ e_entry_class_init (GObjectClass *object_class)
NULL,
G_PARAM_READWRITE));
- g_object_class_install_property (object_class, PROP_FONT,
- g_param_spec_string ("font",
- _( "Font" ),
- _( "Font" ),
- NULL,
- G_PARAM_READWRITE));
-
- g_object_class_install_property (object_class, PROP_FONTSET,
- g_param_spec_string ("fontset",
- _( "Fontset" ),
- _( "Fontset" ),
- NULL,
- G_PARAM_READWRITE));
-
- g_object_class_install_property (object_class, PROP_FONT_GDK,
- g_param_spec_boxed ("font_gdk",
- _( "GDKFont" ),
- _( "GDKFont" ),
- GDK_TYPE_FONT,
- G_PARAM_WRITABLE));
-
g_object_class_install_property (object_class, PROP_JUSTIFICATION,
g_param_spec_enum ("justification",
_( "Justification" ),