/pidgin/main: 49992d98f392: Fix fallback function inlining.
Elliott Sales de Andrade
qulogic at pidgin.im
Tue Jul 24 04:03:58 EDT 2012
Changeset: 49992d98f39227af6172e074271e65ce3319fce1
Author: Elliott Sales de Andrade <qulogic at pidgin.im>
Date: 2012-07-24 02:22 -0400
Branch: cpw.qulogic.gtk3-required
URL: http://hg.pidgin.im/pidgin/main/rev/49992d98f392
Description:
Fix fallback function inlining.
diffstat:
pidgin/gtk3compat.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (20 lines):
diff --git a/pidgin/gtk3compat.h b/pidgin/gtk3compat.h
--- 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);
More information about the Commits
mailing list