Remove eek-theme-private.h.

This commit is contained in:
Daiki Ueno
2011-03-07 14:40:04 +09:00
parent d57ae91995
commit c9b54ba87f

View File

@ -47,11 +47,11 @@
#include <stdlib.h>
#include <string.h>
#include <libcroco/libcroco.h>
#include <gio/gio.h>
#include "eek-theme.h"
#include "eek-theme-node.h"
#include "eek-theme-private.h"
static GObject *eek_theme_constructor (GType type,
guint n_construct_properties,
@ -66,6 +66,9 @@ static void eek_theme_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec);
static char *eek_theme_resolve_url (EekTheme *theme,
CRStyleSheet *base_stylesheet,
const char *url);
struct _EekTheme
{
@ -921,7 +924,7 @@ add_matched_properties (EekTheme *a_this,
char *filename = NULL;
if (import_rule->url->stryng && import_rule->url->stryng->str)
filename = _eek_theme_resolve_url (a_this,
filename = eek_theme_resolve_url (a_this,
a_nodesheet,
import_rule->url->stryng->str);
@ -1072,8 +1075,8 @@ _eek_theme_get_matched_properties (EekTheme *theme,
* local filename, if possible. The resolution here is distinctly lame and
* will fail on many examples.
*/
char *
_eek_theme_resolve_url (EekTheme *theme,
static char *
eek_theme_resolve_url (EekTheme *theme,
CRStyleSheet *base_stylesheet,
const char *url)
{