diff options
author | infirit <[email protected]> | 2014-10-24 16:31:11 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-10-24 16:36:19 +0200 |
commit | 49e91bc9093010e269816da1df763a0374dbc515 (patch) | |
tree | cc62723c60743e4df53286c0bc9a9f13c645ef1b /src/include/util.h | |
parent | bbdef45fbb7c7addea5a3be99fbebf823d83192d (diff) | |
download | marco-49e91bc9093010e269816da1df763a0374dbc515.tar.bz2 marco-49e91bc9093010e269816da1df763a0374dbc515.tar.xz |
Update meta_show_dialog for gtk's removal of --screen
gtk3 no longer has the --screen command-line argument, which
metacity was passing to zenity. Use --display (with an
explicitly-specified screen number) instead.
Author: Dan Winship
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=687938
Based on metacity commit: 8d19afdcccaec28a5512b0a707d8238b9dd4e2f3
Diffstat (limited to 'src/include/util.h')
-rw-r--r-- | src/include/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/util.h b/src/include/util.h index b4e95be0..ba6a2754 100644 --- a/src/include/util.h +++ b/src/include/util.h @@ -99,9 +99,9 @@ char* meta_g_utf8_strndup (const gchar *src, gsize n); void meta_free_gslist_and_elements (GSList *list_to_deep_free); GPid meta_show_dialog (const char *type, - const char *title, const char *message, - gint timeout, + const char *timeout, + const char *display, const char *ok_text, const char *cancel_text, const int transient_for, |