]> Pileus Git - ~andy/gtk/commitdiff
style: Move private function into private header
authorBenjamin Otte <otte@redhat.com>
Tue, 15 Mar 2011 11:20:29 +0000 (12:20 +0100)
committerBenjamin Otte <otte@redhat.com>
Thu, 17 Mar 2011 10:59:17 +0000 (11:59 +0100)
The function wasn't exported, so everybody using it would have gotten
linking failures.

gtk/Makefile.am
gtk/gtkstylecontext.c
gtk/gtkstyleproperties.h
gtk/gtkstylepropertiesprivate.h [new file with mode: 0644]

index 827400150690bc4bd8881301899ca7fb72beac1c..efe93154b7ebb0e1528b52b0c7a852c7e2117c1e 100644 (file)
@@ -428,6 +428,7 @@ gtk_private_h_sources =             \
        gtksizegroup-private.h  \
        gtksocketprivate.h      \
        gtkstylecontextprivate.h \
+       gtkstylepropertiesprivate.h \
        gtktextbtree.h          \
        gtktextbufferserialize.h \
        gtktextchildprivate.h   \
index 1e5e85ef53b60313de8dfdffd2d159285cde61ac..44965fd29bb0a5cc3e080c3d2bf21db8b59e7273 100644 (file)
@@ -24,6 +24,7 @@
 #include <gobject/gvaluecollector.h>
 
 #include "gtkstylecontextprivate.h"
+#include "gtkstylepropertiesprivate.h"
 #include "gtktypebuiltins.h"
 #include "gtkthemingengine.h"
 #include "gtkintl.h"
index 739a5650279e66f650036229f8fef8fd2415b46a..0cc478892b56e443c84bd56b11e1d2dd4c8ed99e 100644 (file)
@@ -66,11 +66,6 @@ typedef gboolean (* GtkStylePropertyParser) (const gchar  *string,
 
 GType gtk_style_properties_get_type (void) G_GNUC_CONST;
 
-/* Semi-private API */
-const GValue * _gtk_style_properties_peek_property (GtkStyleProperties *props,
-                                                    const gchar        *prop_name,
-                                                    GtkStateFlags       state);
-
 /* Functions to register style properties */
 void     gtk_style_properties_register_property (GtkStylePropertyParser  parse_func,
                                                  GParamSpec             *pspec);
diff --git a/gtk/gtkstylepropertiesprivate.h b/gtk/gtkstylepropertiesprivate.h
new file mode 100644 (file)
index 0000000..91dc72f
--- /dev/null
@@ -0,0 +1,33 @@
+/* GTK - The GIMP Toolkit
+ * Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GTK_STYLE_PROPERTIES_PRIVATE_H__
+#define __GTK_STYLE_PROPERTIES_PRIVATE_H__
+
+#include "gtkstyleproperties.h"
+
+G_BEGIN_DECLS
+
+const GValue * _gtk_style_properties_peek_property (GtkStyleProperties *props,
+                                                    const gchar        *prop_name,
+                                                    GtkStateFlags       state);
+
+G_END_DECLS
+
+#endif /* __GTK_STYLE_PROPERTIES_PRIVATE_H__ */