diff options
author | Robert Staudinger <robsta@gnome.org> | 2008-12-11 17:19:49 +0100 |
---|---|---|
committer | Robert Staudinger <robsta@gnome.org> | 2008-12-11 17:19:49 +0100 |
commit | 0ec77449c19ee52a1a3898830d8a229af6588d78 (patch) | |
tree | 02a6fa57d7b0d440e0cd6da7ded6f0b8b6368a82 /ccss-gtk | |
parent | cfbb71cde190f9816820e669deedb2e2bae5eb72 (diff) |
* ccss-cairo-doc/ccss-cairo-docs.sgml:
* ccss-cairo-doc/ccss-cairo-sections.txt:
* ccss-cairo-doc/tmpl/ccss.sgml:
* ccss-cairo/Makefile.am:
* ccss-cairo/ccss-cairo-style-priv.h:
* ccss-cairo/ccss-cairo-style.c (lookup_property_r),
(ccss_cairo_style_draw_line), (gather_stroke), (gather_join),
(gather_outline), (ccss_cairo_style_get_double),
(ccss_cairo_style_get_string), (ccss_cairo_style_get_property):
* ccss-cairo/ccss-cairo.c:
* ccss-cairo/ccss-cairo.sym:
* ccss-doc/ccss-docs.sgml:
* ccss-doc/ccss-sections.txt:
* ccss-doc/tmpl/ccss.sgml:
* ccss-gtk/Makefile.am:
* ccss-gtk/ccss-gtk.c:
* ccss-gtk/ccss-gtk.sym:
* ccss/Makefile.am:
* ccss/ccss.c:
* ccss/ccss.sym:
* examples/example-1.c (main):
* examples/example-2.c (main):
* examples/example-3.c (main):
* examples/example-4.c (main):
* examples/example-5.c (main):
Get rid of _init() and _shutdown() functions.
Diffstat (limited to 'ccss-gtk')
-rw-r--r-- | ccss-gtk/Makefile.am | 1 | ||||
-rw-r--r-- | ccss-gtk/ccss-gtk.c | 44 | ||||
-rw-r--r-- | ccss-gtk/ccss-gtk.sym | 2 |
3 files changed, 0 insertions, 47 deletions
diff --git a/ccss-gtk/Makefile.am b/ccss-gtk/Makefile.am index 7fa595f..569ba00 100644 --- a/ccss-gtk/Makefile.am +++ b/ccss-gtk/Makefile.am @@ -20,7 +20,6 @@ libccss_gtk_1_la_LIBADD = \ libccss_gtk_1_la_SOURCES = \ $(headers_DATA) \ - ccss-gtk.c \ ccss-gtk-grammar.c \ ccss-gtk-property.c \ ccss-gtk-property.h \ diff --git a/ccss-gtk/ccss-gtk.c b/ccss-gtk/ccss-gtk.c deleted file mode 100644 index 9804515..0000000 --- a/ccss-gtk/ccss-gtk.c +++ /dev/null @@ -1,44 +0,0 @@ -/* The Gtk+ CSS Drawing Library. - * Copyright (C) 2008 Robert Staudinger - * - * 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., 51 Franklin St, Fifth Floor, Boston, - * MA 02110-1301, USA. - */ - -#include "ccss-gtk.h" -#include "config.h" - -/** - * ccss_gtk_init: - * - * Initialize the ccss-gtk library before making any calls to it. - **/ -void -ccss_gtk_init (void) -{ - ccss_cairo_init (); -} - -/** - * ccss_gtk_shutdown: - * - * Shut down the ccss-gtk library. - **/ -void -ccss_gtk_shutdown (void) -{ - ccss_cairo_shutdown (); -} - diff --git a/ccss-gtk/ccss-gtk.sym b/ccss-gtk/ccss-gtk.sym index cf36f42..7d6e5d7 100644 --- a/ccss-gtk/ccss-gtk.sym +++ b/ccss-gtk/ccss-gtk.sym @@ -1,4 +1,2 @@ -ccss_gtk_init -ccss_gtk_shutdown ccss_gtk_grammar_create ccss_gtk_stylesheet_to_gtkrc |