diff options
Diffstat (limited to 'src/gui/panels')
-rw-r--r-- | src/gui/panels/history.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/panels/history.c b/src/gui/panels/history.c index d6ca678..0b064f9 100644 --- a/src/gui/panels/history.c +++ b/src/gui/panels/history.c @@ -690,7 +690,7 @@ static void do_history_undo(GtkButton *button, GHistoryPanel *panel) { gtk_tree_model_get(model, &iter, HTC_ITEM, &item, -1); - client = g_loaded_binary_get_client(panel->binary, true); + client = g_loaded_binary_get_client(panel->binary); g_analyst_client_set_last_active(client, g_db_item_get_timestamp(item)); g_object_unref(G_OBJECT(client)); @@ -738,7 +738,7 @@ static void do_history_redo(GtkButton *button, GHistoryPanel *panel) { gtk_tree_model_get(model, &iter, HTC_ITEM, &item, -1); - client = g_loaded_binary_get_client(panel->binary, true); + client = g_loaded_binary_get_client(panel->binary); g_analyst_client_set_last_active(client, g_db_item_get_timestamp(item)); g_object_unref(G_OBJECT(client)); |