summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Sales de Andrade <qulogic@pidgin.im>2012-07-24 02:22:45 -0400
committerElliott Sales de Andrade <qulogic@pidgin.im>2012-07-24 02:22:45 -0400
commit42e502c29514a244978a0b48d090d60e0c1a54f2 (patch)
treeca23c426afc78aae9740b664019723b438d94d43
parent611d66803a1c9b6d93cb101b1600e4e3a2660edd (diff)
downloadpidgin-42e502c29514a244978a0b48d090d60e0c1a54f2.tar.gz
Fix fallback function inlining.
-rw-r--r--pidgin/gtk3compat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pidgin/gtk3compat.h b/pidgin/gtk3compat.h
index b1d68d308c..48f0cb57a6 100644
--- a/pidgin/gtk3compat.h
+++ b/pidgin/gtk3compat.h
@@ -40,14 +40,14 @@
#define gtk_combo_box_text_get_active_text gtk_combo_box_get_active_text
#define gtk_combo_box_text_remove gtk_combo_box_remove_text
-gint inline gdk_window_get_width(GdkWindow *x)
+static inline gint gdk_window_get_width(GdkWindow *x)
{
gint w;
gdk_drawable_get_size(GDK_DRAWABLE(x), &w, NULL);
return w;
}
-gint inline gdk_window_get_height(GdkWindow *x)
+static inline gint gdk_window_get_height(GdkWindow *x)
{
gint h;
gdk_drawable_get_size(GDK_DRAWABLE(x), NULL, &h);