diff options
author | raveit65 <[email protected]> | 2017-07-22 17:19:34 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-07-22 18:00:49 +0200 |
commit | 07a0a6ba9a536561533ac3b1b283d999f5dfd489 (patch) | |
tree | 8c00ee88698c4b0b4ad8b72202c3246ff2b65aab /src/caja-file-management-properties.c | |
parent | 7fd994d1573c77bdcc10e9a2c834c89a04955474 (diff) | |
download | caja-07a0a6ba9a536561533ac3b1b283d999f5dfd489.tar.bz2 caja-07a0a6ba9a536561533ac3b1b283d999f5dfd489.tar.xz |
don't use deprecated gtk_show_uri
Diffstat (limited to 'src/caja-file-management-properties.c')
-rw-r--r-- | src/caja-file-management-properties.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/caja-file-management-properties.c b/src/caja-file-management-properties.c index e7051284..131dc880 100644 --- a/src/caja-file-management-properties.c +++ b/src/caja-file-management-properties.c @@ -222,9 +222,15 @@ preferences_show_help (GtkWindow *parent, help_string = g_strdup_printf ("help:%s/%s", helpfile, sect_id); +#if GTK_CHECK_VERSION (3, 22, 0) + gtk_show_uri_on_window (parent, + help_string, gtk_get_current_event_time (), + &error); +#else gtk_show_uri (gtk_window_get_screen (parent), help_string, gtk_get_current_event_time (), &error); +#endif g_free (help_string); if (error) |