From: Julien Rebetez Date: Tue, 15 Aug 2006 16:24:32 +0000 (+0000) Subject: Fixed a compilation error if HAVE_GTK_RECENT isn't defined. X-Git-Tag: EVINCE_0_6_0~51 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=5536f17da9d02866c0286b37cd6ac69fcb0c1fb3;p=evince.git Fixed a compilation error if HAVE_GTK_RECENT isn't defined. 2006-08-15 Julien Rebetez * shell/ev-window.c: (ev_window_cmd_recent_file_activate): Fixed a compilation error if HAVE_GTK_RECENT isn't defined. --- diff --git a/ChangeLog b/ChangeLog index fc95f586..7b603936 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-08-15 Julien Rebetez + * shell/ev-window.c: (ev_window_cmd_recent_file_activate): + Fixed a compilation error if HAVE_GTK_RECENT isn't defined. + 2006-08-14 Carlos Garcia Campos * shell/ev-sidebar-thumbnails.c: diff --git a/shell/ev-window.c b/shell/ev-window.c index c2066e49..52f25767 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -1144,7 +1144,7 @@ ev_window_cmd_recent_file_activate (GtkAction *action, uri = egg_recent_item_get_uri (item); - ev_application_open_uri (EV_APP, -1, uri, NULL, + ev_application_open_uri (EV_APP, uri, NULL, GDK_CURRENT_TIME, NULL); g_free (uri);