Remove an unused internal export

_gtk_scrolled_window_get_scrollbar_spacing is only used in
gtkscrolledwindow.c, so keep it there.
This commit is contained in:
Matthias Clasen 2014-10-09 00:22:13 -04:00
parent c9420aa1a3
commit 1331740dd6
2 changed files with 2 additions and 3 deletions

View File

@ -283,6 +283,7 @@ static gboolean _gtk_scrolled_window_get_overshoot (GtkScrolledWindow *scrolled_
gint *overshoot_y);
static void gtk_scrolled_window_start_deceleration (GtkScrolledWindow *scrolled_window);
static gint _gtk_scrolled_window_get_scrollbar_spacing (GtkScrolledWindow *scrolled_window);
static guint signals[LAST_SIGNAL] = {0};
@ -2858,7 +2859,7 @@ gtk_scrolled_window_add_with_viewport (GtkScrolledWindow *scrolled_window,
*
* Returns: the spacing, in pixels.
*/
gint
static gint
_gtk_scrolled_window_get_scrollbar_spacing (GtkScrolledWindow *scrolled_window)
{
GtkScrolledWindowClass *class;

View File

@ -204,8 +204,6 @@ void gtk_scrolled_window_set_capture_button_press (GtkScrolledWindow
GDK_AVAILABLE_IN_3_4
gboolean gtk_scrolled_window_get_capture_button_press (GtkScrolledWindow *scrolled_window);
gint _gtk_scrolled_window_get_scrollbar_spacing (GtkScrolledWindow *scrolled_window);
G_END_DECLS