From: Daniel Carl Date: Fri, 21 Dec 2012 23:13:13 +0000 (+0100) Subject: Remove unneeded hints_vlear_focus function. X-Git-Url: https://git.owens.tech/assets/wrapped.html/assets/wrapped.html/git?a=commitdiff_plain;h=0af9c367691ae6ac3deb5b0da4046519e873afd9;p=vimb.git Remove unneeded hints_vlear_focus function. --- diff --git a/src/hints.c b/src/hints.c index 6cde84f..d46767b 100644 --- a/src/hints.c +++ b/src/hints.c @@ -131,7 +131,6 @@ void hints_create(const gchar* input, guint mode) /* create the hints for the main window */ hints_create_for_window(input, win, top_width, top_height, offsetX, offsetY); - hints_clear_focus(); hints_focus(1); if (hintCount == 1) { @@ -176,11 +175,6 @@ void hints_update(const gulong num) } } -void hints_clear_focus(void) -{ - -} - void hints_focus_next(const gboolean back) { Hint* hint = NULL; diff --git a/src/hints.h b/src/hints.h index 8286697..6d0ac8e 100644 --- a/src/hints.h +++ b/src/hints.h @@ -57,7 +57,6 @@ typedef enum { void hints_create(const gchar* input, guint mode); void hints_update(const gulong num); void hints_clear(void); -void hints_clear_focus(void); void hints_focus_next(const gboolean back); #endif /* end of include guard: HINTS_H */