aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-search-bar.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-09-29 21:45:08 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-10-04 16:41:29 +0800
commitb70f96a527146903d637ef75434423da9a5b7468 (patch)
treef8bc2988ba8b36c34245ab0b92c481a0ba5d5ed4 /libempathy-gtk/empathy-search-bar.c
parent23535a4ce054f952aa31012bbbc2fd894ba77ecd (diff)
downloadgsoc2013-empathy-b70f96a527146903d637ef75434423da9a5b7468.tar
gsoc2013-empathy-b70f96a527146903d637ef75434423da9a5b7468.tar.gz
gsoc2013-empathy-b70f96a527146903d637ef75434423da9a5b7468.tar.bz2
gsoc2013-empathy-b70f96a527146903d637ef75434423da9a5b7468.tar.lz
gsoc2013-empathy-b70f96a527146903d637ef75434423da9a5b7468.tar.xz
gsoc2013-empathy-b70f96a527146903d637ef75434423da9a5b7468.tar.zst
gsoc2013-empathy-b70f96a527146903d637ef75434423da9a5b7468.zip
GDK keys are now GDK_KEY_*
Diffstat (limited to 'libempathy-gtk/empathy-search-bar.c')
-rw-r--r--libempathy-gtk/empathy-search-bar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-search-bar.c b/libempathy-gtk/empathy-search-bar.c
index 2116d598a..bd97c2dac 100644
--- a/libempathy-gtk/empathy-search-bar.c
+++ b/libempathy-gtk/empathy-search-bar.c
@@ -230,7 +230,7 @@ empathy_search_bar_key_pressed (GtkWidget *widget,
GdkEventKey *event,
gpointer user_data)
{
- if (event->keyval == GDK_Escape)
+ if (event->keyval == GDK_KEY_Escape)
{
empathy_search_bar_hide (EMPATHY_SEARCH_BAR (widget));
return TRUE;