Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorHib Eris <hib@hiberis.nl>2010-03-29 14:50:39 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2010-03-31 17:12:18 (GMT)
commit44f3d100e1be64618e4a58d18e2df71b23bc3bbe (patch)
treec35180c0b0d3e064c97d1279d344376d39dcb8e6 /shell
parent765e79bb75503f6369e0e3d289d40053e1872eaf (diff)
Replace GTK_WIDGET_IS_SENSITIVE() with gtk_widget_is_sensitive()
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 5f522c1..3d1ffaf 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -4935,7 +4935,7 @@ ev_window_key_press_event (GtkWidget *widget,
*/
if (priv->view) {
g_object_ref (priv->view);
- if (GTK_WIDGET_IS_SENSITIVE (priv->view))
+ if (gtk_widget_is_sensitive (priv->view))
handled = gtk_widget_event (priv->view, (GdkEvent*) event);
g_object_unref (priv->view);
}