diff options
Diffstat (limited to 'src/gui/tb')
-rw-r--r-- | src/gui/tb/portions.c | 3 | ||||
-rw-r--r-- | src/gui/tb/source.c | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/tb/portions.c b/src/gui/tb/portions.c index 432f808..bbc31b9 100644 --- a/src/gui/tb/portions.c +++ b/src/gui/tb/portions.c @@ -131,7 +131,8 @@ GEditorItem *create_portions_tb_item(GObject *ref) result = g_toolbar_item_new(ref, "portions", widget, _("Portions")); - result->update_binary = update_portions_item_binary; + /* FIXME */ + //G_EDITOR_ITEM_GET_CLASS(result)->update_binary = update_portions_item_binary; return result; diff --git a/src/gui/tb/source.c b/src/gui/tb/source.c index d5318c4..74de77e 100644 --- a/src/gui/tb/source.c +++ b/src/gui/tb/source.c @@ -115,8 +115,9 @@ GEditorItem *create_source_tb_item(GObject *ref) result = g_toolbar_item_new(ref, "source", widget, _("Source files")); - result->update_binary = update_source_item_binary; - result->update_view = update_source_item_view; + /* FIXME */ + //G_EDITOR_ITEM_GET_CLASS(result)->update_binary = update_source_item_binary; + //G_EDITOR_ITEM_GET_CLASS(result)->update_view = update_source_item_view; return result; |