diff options
author | Milan Crha <mcrha@redhat.com> | 2014-01-28 02:15:21 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-01-28 02:15:21 +0800 |
commit | fd692d0b1d16f6e083add4dd8fe8a3019948e4a2 (patch) | |
tree | 36c62fea6e2ed40a3148f02850d99680ca1e5a8a /e-util/e-action-combo-box.c | |
parent | 1c53fdf558cf0ad51b54f9a0d1eb06f63931438d (diff) | |
download | gsoc2013-evolution-fd692d0b1d16f6e083add4dd8fe8a3019948e4a2.tar gsoc2013-evolution-fd692d0b1d16f6e083add4dd8fe8a3019948e4a2.tar.gz gsoc2013-evolution-fd692d0b1d16f6e083add4dd8fe8a3019948e4a2.tar.bz2 gsoc2013-evolution-fd692d0b1d16f6e083add4dd8fe8a3019948e4a2.tar.lz gsoc2013-evolution-fd692d0b1d16f6e083add4dd8fe8a3019948e4a2.tar.xz gsoc2013-evolution-fd692d0b1d16f6e083add4dd8fe8a3019948e4a2.tar.zst gsoc2013-evolution-fd692d0b1d16f6e083add4dd8fe8a3019948e4a2.zip |
Bug #721213 - Character encoding combo opened empty
Diffstat (limited to 'e-util/e-action-combo-box.c')
-rw-r--r-- | e-util/e-action-combo-box.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/e-util/e-action-combo-box.c b/e-util/e-action-combo-box.c index e0a9357388..14731a7983 100644 --- a/e-util/e-action-combo-box.c +++ b/e-util/e-action-combo-box.c @@ -361,6 +361,9 @@ action_combo_box_constructed (GObject *object) combo_box = GTK_COMBO_BOX (object); + /* Chain up to parent's constructed() method. */ + G_OBJECT_CLASS (e_action_combo_box_parent_class)->constructed (object); + /* This needs to happen after constructor properties are set * so that GtkCellLayout.get_area() returns something valid. */ |