diff options
author | jstebbins <[email protected]> | 2015-01-11 20:45:21 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-01-11 20:45:21 +0000 |
commit | 4c9a2335aaeadb89bce515b5cd5f0ad66dd7788d (patch) | |
tree | eb51eee90706fdb600f38398c16e6235f82b78d6 /gtk/src/hb-backend.h | |
parent | fca1620cd234a97a896116b30ff9a3d3d31eb685 (diff) |
LinGui: fix parent window of dialogs
libgtk has started complaining about floating dialogs
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6734 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/hb-backend.h')
-rw-r--r-- | gtk/src/hb-backend.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/src/hb-backend.h b/gtk/src/hb-backend.h index 4d946fc0d..fd6e5a641 100644 --- a/gtk/src/hb-backend.h +++ b/gtk/src/hb-backend.h @@ -144,10 +144,10 @@ gint ghb_subtitle_track_source(GValue *settings, gint track); const gchar* ghb_subtitle_track_lang(GValue *settings, gint track); gboolean ghb_validate_vquality(GValue *settings); -gboolean ghb_validate_audio(GValue *settings); -gboolean ghb_validate_subtitles(GValue *settings); -gboolean ghb_validate_video(GValue *settings); -gboolean ghb_validate_filters(GValue *settings); +gboolean ghb_validate_audio(GValue *settings, GtkWindow *parent); +gboolean ghb_validate_subtitles(GValue *settings, GtkWindow *parent); +gboolean ghb_validate_video(GValue *settings, GtkWindow *parent); +gboolean ghb_validate_filters(GValue *settings, GtkWindow *parent); gboolean ghb_validate_filter_string(const gchar *str, gint max_fields); void ghb_hb_cleanup(gboolean partial); gint ghb_lookup_combo_int(const gchar *name, const GValue *gval); |