diff options
Diffstat (limited to 'src/ephy-history-window.c')
-rw-r--r-- | src/ephy-history-window.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 5c4b4efe1..7074dd770 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -1341,7 +1341,8 @@ ephy_history_window_set_parent (EphyHistoryWindow *ebe, } GtkWidget * -ephy_history_window_new (EphyHistory *history) +ephy_history_window_new (EphyHistory *history, + EphyHistoryService *history_service) { EphyHistoryWindow *editor; @@ -1350,6 +1351,7 @@ ephy_history_window_new (EphyHistory *history) editor = EPHY_HISTORY_WINDOW (g_object_new (EPHY_TYPE_HISTORY_WINDOW, "history", history, + "history-service", history_service, NULL)); ephy_history_window_construct (editor); |