aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-10-23 20:38:31 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-10-23 20:38:31 +0200
commitb362c173ee70b6156204332f758a191ae223294a (patch)
tree49f8a4b2cc5b522f6f3a0033dfc4758090683757 /src
parentde21170afbb37e7de1d0504de8768e9a38fd5b24 (diff)
css.[ch][ch] -> styleengine.[ch][ch]
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/html_common.hh2
-rw-r--r--src/styleengine.cc (renamed from src/css.cc)4
-rw-r--r--src/styleengine.hh (renamed from src/css.hh)4
4 files changed, 7 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index d3f46af1..e644b7b5 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -67,6 +67,8 @@ dillo_SOURCES = \
capi.h \
css.cc \
css.hh \
+ styleengine.cc \
+ styleengine.hh \
plain.cc \
html.cc \
html.hh \
diff --git a/src/html_common.hh b/src/html_common.hh
index b4ecb58d..d05ac495 100644
--- a/src/html_common.hh
+++ b/src/html_common.hh
@@ -13,7 +13,7 @@
#include "form.hh"
-#include "css.hh"
+#include "styleengine.hh"
/*
* Macros
diff --git a/src/css.cc b/src/styleengine.cc
index 5712390d..f1eb5330 100644
--- a/src/css.cc
+++ b/src/styleengine.cc
@@ -1,5 +1,5 @@
/*
- * File: css.cc
+ * File: styleengine.cc
*
* Copyright 2008 Jorge Arellano Cid <jcid@dillo.org>
*
@@ -10,7 +10,7 @@
*/
#include <stdio.h>
-#include "css.hh"
+#include "styleengine.hh"
StyleEngine::StyleEngine () {
}
diff --git a/src/css.hh b/src/styleengine.hh
index 02fa06f6..1e69ff49 100644
--- a/src/css.hh
+++ b/src/styleengine.hh
@@ -1,5 +1,5 @@
-#ifndef __CSS_HH__
-#define __CSS_HH__
+#ifndef __STYLEENGINE_HH__
+#define __STYLEENGINE_HH__
#include "dw/core.hh"