diff options
author | Chris Toshok <toshok@ximian.com> | 2003-01-27 12:59:48 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-01-27 12:59:48 +0800 |
commit | 29a26b08f316cda0ebc08c89977caedea603bd9a (patch) | |
tree | 9cad5b3fa428089683069435fc9ce70928a58605 /widgets | |
parent | 734a5f154e5b1cf1fc65d66a2a66a8916d8a05fd (diff) | |
download | gsoc2013-evolution-29a26b08f316cda0ebc08c89977caedea603bd9a.tar gsoc2013-evolution-29a26b08f316cda0ebc08c89977caedea603bd9a.tar.gz gsoc2013-evolution-29a26b08f316cda0ebc08c89977caedea603bd9a.tar.bz2 gsoc2013-evolution-29a26b08f316cda0ebc08c89977caedea603bd9a.tar.lz gsoc2013-evolution-29a26b08f316cda0ebc08c89977caedea603bd9a.tar.xz gsoc2013-evolution-29a26b08f316cda0ebc08c89977caedea603bd9a.tar.zst gsoc2013-evolution-29a26b08f316cda0ebc08c89977caedea603bd9a.zip |
init the layout to NULL.
2003-01-26 Chris Toshok <toshok@ximian.com>
* e-clipped-label.c (e_clipped_label_new): init the layout to
NULL.
svn path=/trunk/; revision=19639
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/ChangeLog | 5 | ||||
-rw-r--r-- | widgets/misc/e-clipped-label.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index 6ff9920510..d75d654f96 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,8 @@ +2003-01-26 Chris Toshok <toshok@ximian.com> + + * e-clipped-label.c (e_clipped_label_new): init the layout to + NULL. + 2003-01-23 Ettore Perazzoli <ettore@ximian.com> * e-title-bar.c (e_title_bar_construct): Make the label bold using diff --git a/widgets/misc/e-clipped-label.c b/widgets/misc/e-clipped-label.c index 30c7eb6bba..820398e891 100644 --- a/widgets/misc/e-clipped-label.c +++ b/widgets/misc/e-clipped-label.c @@ -144,6 +144,7 @@ e_clipped_label_new (const gchar *text, clipped->font_size = font_size; clipped->font_weight = font_weight; + clipped->layout = NULL; build_layout (clipped, e_clipped_label_ellipsis); pango_layout_get_pixel_size (clipped->layout, &clipped->ellipsis_width, NULL); |