Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libview/ev-pixbuf-cache.c
diff options
context:
space:
mode:
authorHib Eris <hib@hiberis.nl>2010-03-29 14:47:23 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2010-03-31 17:09:45 (GMT)
commit765e79bb75503f6369e0e3d289d40053e1872eaf (patch)
tree7047adb56cd2dd430c7a9c85613db128407c9871 /libview/ev-pixbuf-cache.c
parentb81ab84ffbb263771071c9ed79350dbb4017a17b (diff)
Replace GTK_WIDGET_HAS_FOCUS() with gtk_widget_has_focus()
Diffstat (limited to 'libview/ev-pixbuf-cache.c')
-rw-r--r--libview/ev-pixbuf-cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libview/ev-pixbuf-cache.c b/libview/ev-pixbuf-cache.c
index 87e78b4..3827fdb 100644
--- a/libview/ev-pixbuf-cache.c
+++ b/libview/ev-pixbuf-cache.c
@@ -479,7 +479,7 @@ ev_pixbuf_cache_clear_job_sizes (EvPixbufCache *pixbuf_cache,
static void
get_selection_colors (GtkWidget *widget, GdkColor **text, GdkColor **base)
{
- if (GTK_WIDGET_HAS_FOCUS (widget)) {
+ if (gtk_widget_has_focus (widget)) {
*text = &widget->style->text [GTK_STATE_SELECTED];
*base = &widget->style->base [GTK_STATE_SELECTED];
} else {