summaryrefslogtreecommitdiffstats
path: root/gtk/src/x264handler.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2011-03-22 01:03:17 +0000
committerjstebbins <[email protected]>2011-03-22 01:03:17 +0000
commit0bbe89324d25c6e1e6ca68198dfe2356175dcf8f (patch)
tree48e736f482f20268adb7dccde191835c1d37dfe5 /gtk/src/x264handler.c
parent8db28e9250ffaee1b6b8c1d7e60aeee9b9466dba (diff)
LinGui: Remove use of deprecated GTK_WIDGET_SENSITIVE and GTK_WIDGET_HAS_FOCUS
Replace with gtk_widget_is_sensitive and gtk_widget_has_focus git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3861 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/x264handler.c')
-rw-r--r--gtk/src/x264handler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/src/x264handler.c b/gtk/src/x264handler.c
index 06d2eb909..d7602f768 100644
--- a/gtk/src/x264handler.c
+++ b/gtk/src/x264handler.c
@@ -115,7 +115,7 @@ x264_entry_changed_cb(GtkWidget *widget, signal_user_data_t *ud)
options = ghb_settings_get_string(ud->settings, "x264Option");
ignore_options_update = TRUE;
ghb_x264_parse_options(ud, options);
- if (!GTK_WIDGET_HAS_FOCUS(textview))
+ if (!gtk_widget_has_focus(textview))
{
gchar *sopts;