diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-07-08 18:09:54 +0800 |
---|---|---|
committer | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-08-05 22:37:06 +0800 |
commit | 5cc326f741ab695e4fac8f4c4ccd99cf235115fc (patch) | |
tree | 08cf9567bcd1b286f6526f70ab24f3fdb5ea411c /src/empathy-preferences.c | |
parent | fd4fddb72a34a446b06068b0aeeba4e04b6f57c3 (diff) | |
download | gsoc2013-empathy-5cc326f741ab695e4fac8f4c4ccd99cf235115fc.tar gsoc2013-empathy-5cc326f741ab695e4fac8f4c4ccd99cf235115fc.tar.gz gsoc2013-empathy-5cc326f741ab695e4fac8f4c4ccd99cf235115fc.tar.bz2 gsoc2013-empathy-5cc326f741ab695e4fac8f4c4ccd99cf235115fc.tar.lz gsoc2013-empathy-5cc326f741ab695e4fac8f4c4ccd99cf235115fc.tar.xz gsoc2013-empathy-5cc326f741ab695e4fac8f4c4ccd99cf235115fc.tar.zst gsoc2013-empathy-5cc326f741ab695e4fac8f4c4ccd99cf235115fc.zip |
Use #ifdef instead of #if to avoid warnings of undefined symbols
Diffstat (limited to 'src/empathy-preferences.c')
-rw-r--r-- | src/empathy-preferences.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-preferences.c b/src/empathy-preferences.c index cf8a1748d..cf767a3ea 100644 --- a/src/empathy-preferences.c +++ b/src/empathy-preferences.c @@ -932,7 +932,7 @@ empathy_preferences_init (EmpathyPreferences *preferences) } page = gtk_notebook_get_nth_page (GTK_NOTEBOOK (priv->notebook), 3); -#if HAVE_GEOCLUE +#ifdef HAVE_GEOCLUE gtk_widget_show (page); #else gtk_widget_hide (page); |