From 06001de7e17bdccc2197b9f690269e6f8328e521 Mon Sep 17 00:00:00 2001 From: Jonathan Blandford Date: Fri, 26 Aug 2005 04:46:08 +0000 Subject: Last minute GTK-2.6 fixes. Release 0.4.0 Fri Aug 26 00:45:09 2005 Jonathan Blandford * shell/main.c: * shell/ev-application.c: Last minute GTK-2.6 fixes. * NEWS: Release 0.4.0 --- diff --git a/ChangeLog b/ChangeLog index d567dae..c1be1da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,13 @@ +Fri Aug 26 00:45:09 2005 Jonathan Blandford + + * shell/main.c: + * shell/ev-application.c: Last minute GTK-2.6 fixes. + * NEWS: Release 0.4.0 + Thu Aug 25 23:40:23 2005 Jonathan Blandford * configure.ac: catch another gtk+-2.8ism * shell/main.c: Make work with gtk+-2.6 - * NEWS: Release 0.4.0 2005-08-25 Ryan Lortie diff --git a/shell/ev-application.c b/shell/ev-application.c index d9b5ab0..2b47629 100644 --- a/shell/ev-application.c +++ b/shell/ev-application.c @@ -192,9 +192,12 @@ ev_application_open_uri (EvApplication *application, new_window = ev_application_get_uri_window (application, uri); if (new_window != NULL) { +#ifdef HAVE_GTK_WINDOW_PRESENT_WITH_TIME gtk_window_present_with_time (GTK_WINDOW (new_window), timestamp); - +#else + gtk_window_present (GTK_WINDOW (new_window)); +#endif return TRUE; } @@ -207,7 +210,12 @@ ev_application_open_uri (EvApplication *application, ev_window_open_uri (new_window, uri); - gtk_window_present_with_time (GTK_WINDOW (new_window), timestamp); +#ifdef HAVE_GTK_WINDOW_PRESENT_WITH_TIME + gtk_window_present_with_time (GTK_WINDOW (new_window), + timestamp); +#else + gtk_window_present (GTK_WINDOW (new_window)); +#endif if (page_label != NULL) { ev_window_open_page_label (new_window, page_label); diff --git a/shell/main.c b/shell/main.c index 33cb14e..5af54e6 100644 --- a/shell/main.c +++ b/shell/main.c @@ -26,6 +26,8 @@ #include #include #include +#include +#include #include #include #include @@ -123,7 +125,9 @@ load_files_remote (const char **files) DBusGPendingCall *call; #endif DBusGProxy *remote_object; +#ifdef HAVE_GTK_WINDOW_PRESENT_WITH_TIME GdkDisplay *display; +#endif guint32 timestamp; #ifdef HAVE_GTK_WINDOW_PRESENT_WITH_TIME -- cgit v0.9.1