Remove debugging.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/branches/gnucash-gnome2-dev@9462 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton
2003-10-11 09:20:20 +00:00
parent acfc5f7f9e
commit cb278ec0dc
2 changed files with 0 additions and 4 deletions

View File

@@ -537,7 +537,6 @@ gnc_main_window_actions_updated (GncMainWindow *window)
* here. Force a full update by adding and removing an empty
* action group.
*/
printf("Calling ensure_update\n");
force = egg_action_group_new("force_update");
egg_menu_merge_insert_action_group (window->ui_merge, force, 0);
egg_menu_merge_ensure_update (window->ui_merge);

View File

@@ -121,12 +121,9 @@ gnc_history_update_menus (GncPlugin *plugin)
g_sprintf(action_name, "RecentFile%dAction", i % 10);
action = egg_action_group_get_action (action_group, action_name);
if (action == NULL) {
printf("Creating new action for %s\n", action_name);
new_actions.name = action_name;
egg_action_group_add_actions (action_group, &new_actions, 1, plugin);
action = egg_action_group_get_action (action_group, action_name);
} else {
printf("Found action for %s\n", action_name);
}
/* set the menu label (w/accelerator) */