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