[gtk+] style: Move private function into private header
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] style: Move private function into private header
- Date: Thu, 17 Mar 2011 10:59:39 +0000 (UTC)
commit 3f491f7157b72336da7243d7b66668c4742f4c68
Author: Benjamin Otte <otte redhat com>
Date: Tue Mar 15 12:20:29 2011 +0100
style: Move private function into private header
The function wasn't exported, so everybody using it would have gotten
linking failures.
gtk/Makefile.am | 1 +
gtk/gtkstylecontext.c | 1 +
gtk/gtkstyleproperties.h | 5 -----
gtk/gtkstylepropertiesprivate.h | 33 +++++++++++++++++++++++++++++++++
4 files changed, 35 insertions(+), 5 deletions(-)
---
diff --git a/gtk/Makefile.am b/gtk/Makefile.am
index 8274001..efe9315 100644
--- a/gtk/Makefile.am
+++ b/gtk/Makefile.am
@@ -428,6 +428,7 @@ gtk_private_h_sources = \
gtksizegroup-private.h \
gtksocketprivate.h \
gtkstylecontextprivate.h \
+ gtkstylepropertiesprivate.h \
gtktextbtree.h \
gtktextbufferserialize.h \
gtktextchildprivate.h \
diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c
index 1e5e85e..44965fd 100644
--- a/gtk/gtkstylecontext.c
+++ b/gtk/gtkstylecontext.c
@@ -24,6 +24,7 @@
#include <gobject/gvaluecollector.h>
#include "gtkstylecontextprivate.h"
+#include "gtkstylepropertiesprivate.h"
#include "gtktypebuiltins.h"
#include "gtkthemingengine.h"
#include "gtkintl.h"
diff --git a/gtk/gtkstyleproperties.h b/gtk/gtkstyleproperties.h
index 739a565..0cc4788 100644
--- a/gtk/gtkstyleproperties.h
+++ b/gtk/gtkstyleproperties.h
@@ -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
index 0000000..91dc72f
--- /dev/null
+++ b/gtk/gtkstylepropertiesprivate.h
@@ -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__ */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]