summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-08-02 22:16:19 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-08-02 22:16:19 +0000
commitf18278563422974070266cca2ab09d1615f0c0df (patch)
tree81f93c659c6e0b67adab762eaa9e4aa721c6d643 /src
parentfix new deletion behavior when deleting up to next-to-last node in subpath (diff)
downloadinkscape-f18278563422974070266cca2ab09d1615f0c0df.tar.gz
inkscape-f18278563422974070266cca2ab09d1615f0c0df.zip
compile fix
(bzr r1544)
Diffstat (limited to 'src')
-rw-r--r--src/sp-fecolormatrix.cpp2
-rw-r--r--src/sp-fecomponenttransfer-fns.h38
-rw-r--r--src/sp-fecomponenttransfer.cpp2
3 files changed, 40 insertions, 2 deletions
diff --git a/src/sp-fecolormatrix.cpp b/src/sp-fecolormatrix.cpp
index eab5bb8be..98333cc51 100644
--- a/src/sp-fecolormatrix.cpp
+++ b/src/sp-fecolormatrix.cpp
@@ -19,7 +19,7 @@
#include "attributes.h"
#include "svg/svg.h"
-#include "sp-fecolorMatrix.h"
+#include "sp-fecolormatrix.h"
#include "xml/repr.h"
//#define SP_MACROS_SILENT
diff --git a/src/sp-fecomponenttransfer-fns.h b/src/sp-fecomponenttransfer-fns.h
new file mode 100644
index 000000000..49983770a
--- /dev/null
+++ b/src/sp-fecomponenttransfer-fns.h
@@ -0,0 +1,38 @@
+#ifndef SP_FECOMPONENTTRANSFER_FNS_H
+#define SP_FECOMPONENTTRANSFER_FNS_H
+
+/** \file
+ * Macros and fn declarations related to gaussian blur filter.
+ */
+
+#include <glib-object.h>
+#include <glib/gtypes.h>
+
+namespace Inkscape {
+namespace XML {
+class Node;
+}
+}
+
+class SPFeComponentTransfer;
+
+#define SP_TYPE_FECOMPONENTTRANSFER (sp_feComponentTransfer_get_type())
+#define SP_FECOMPONENTTRANSFER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SP_TYPE_FECOMPONENTTRANSFER, SPFeComponentTransfer))
+#define SP_FECOMPONENTTRANSFER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SP_TYPE_FECOMPONENTTRANSFER, SPFeComponentTransferClass))
+#define SP_IS_FECOMPONENTTRANSFER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SP_TYPE_FECOMPONENTTRANSFER))
+#define SP_IS_FECOMPONENTTRANSFER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SP_TYPE_FECOMPONENTTRANSFER))
+
+GType sp_feComponentTransfer_get_type();
+
+#endif /* !SP_FECOMPONENTTRANSFER_FNS_H */
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
diff --git a/src/sp-fecomponenttransfer.cpp b/src/sp-fecomponenttransfer.cpp
index ffb6f552f..710faa2f5 100644
--- a/src/sp-fecomponenttransfer.cpp
+++ b/src/sp-fecomponenttransfer.cpp
@@ -19,7 +19,7 @@
#include "attributes.h"
#include "svg/svg.h"
-#include "sp-fecomponentTransfer.h"
+#include "sp-fecomponenttransfer.h"
#include "xml/repr.h"
//#define SP_MACROS_SILENT