gtk-css-engine r191 - in trunk: . src



Author: robsta
Date: Mon Nov 17 14:53:48 2008
New Revision: 191
URL: http://svn.gnome.org/viewvc/gtk-css-engine?rev=191&view=rev

Log:
* Makefile.am:
* configure.in:
* src/gce-functions.c (url), (color), (mix), (shade), (lighter),
(darker):
Fix after libccss extended function interface.



Modified:
   trunk/ChangeLog
   trunk/Makefile.am
   trunk/configure.in
   trunk/src/gce-functions.c

Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am	(original)
+++ trunk/Makefile.am	Mon Nov 17 14:53:48 2008
@@ -2,7 +2,7 @@
 ACLOCAL_AMFLAGS = -I .
 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-werror --enable-libccss
 
-SUBDIRS = doc src themes
+SUBDIRS = conf doc src themes
 
 EXTRA_DIST = \
 	AUTHORS \

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Mon Nov 17 14:53:48 2008
@@ -97,7 +97,7 @@
 # Maybe it would work with gtk+-2.8, the first sporting cairo, right?
 pkgs='libccss-gtk-1 >= 0.2'
 
-AC_MSG_CHECKING([for gtk support in libccss])
+AC_MSG_CHECKING([for svg support in libccss])
 with_rsvg=`$PKG_CONFIG --variable=ccss_with_rsvg libccss-1`
 if test "$with_rsvg" == "yes"; then
   AC_MSG_RESULT([$with_rsvg])

Modified: trunk/src/gce-functions.c
==============================================================================
--- trunk/src/gce-functions.c	(original)
+++ trunk/src/gce-functions.c	Mon Nov 17 14:53:48 2008
@@ -31,7 +31,9 @@
  * TODO make this bullet proof wrt uri scheme.
  */
 static char *
-url (GSList const *args)
+url (char const		*property_name,
+     char const		*function_name,
+     GSList const	*args)
 {
 	char		*resolved_path;
 	char		*ret;
@@ -245,7 +247,9 @@
 }
 
 static char *
-color (GSList const *args)
+color (char const	*property_name,
+       char const	*function_name,
+       GSList const	*args)
 {
 	GdkColor	 result;
 	gboolean	 ret;
@@ -266,7 +270,9 @@
 }
 
 static char *
-mix (GSList const *args)
+mix (char const		*property_name,
+     char const		*function_name,
+     GSList const	*args)
 {
 	GSList const	*iter;
 	GdkColor	 result;
@@ -289,7 +295,9 @@
 }
 
 static char *
-shade (GSList const *args)
+shade (char const	*property_name,
+       char const	*function_name,
+       GSList const	*args)
 {
 	GSList const	*iter;
 	GdkColor	 result;
@@ -312,7 +320,9 @@
 }
 
 static char *
-lighter (GSList const *args)
+lighter (char const	*property_name,
+	 char const	*function_name,
+	 GSList const	*args)
 {
 	GSList const	*iter;
 	GdkColor	 result;
@@ -335,7 +345,9 @@
 }
 
 static char *
-darker (GSList const *args)
+darker (char const	*property_name,
+	char const	*function_name,
+	GSList const	*args)
 {
 	GSList const	*iter;
 	GdkColor	 result;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]