diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-04-12 14:16:51 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-04-12 14:16:51 +0000 |
| commit | 57ff29810227ced3f434f9b87ebf3fc6abd19b6e (patch) | |
| tree | 656f3fea5eddd74cebb074a6bf35313c34713064 /src | |
| parent | fix casting problems (diff) | |
| download | inkscape-57ff29810227ced3f434f9b87ebf3fc6abd19b6e.tar.gz inkscape-57ff29810227ced3f434f9b87ebf3fc6abd19b6e.zip | |
fix include paths
(bzr r487)
Diffstat (limited to 'src')
| -rw-r--r-- | src/dom/svg/svgimpl.h | 6 | ||||
| -rw-r--r-- | src/dom/svg/svgtypes.h | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/dom/svg/svgimpl.h b/src/dom/svg/svgimpl.h index 693f0ea5d..2e70590cb 100644 --- a/src/dom/svg/svgimpl.h +++ b/src/dom/svg/svgimpl.h @@ -13,7 +13,7 @@ * Authors:
* Bob Jamison
*
- * Copyright (C) 2005 Bob Jamison
+ * Copyright (C) 2006 Bob Jamison
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -32,8 +32,8 @@ #include "svg.h"
-#include "domimpl.h"
-#include "smilimpl.h"
+#include "dom/domimpl.h"
+#include "dom/smilimpl.h"
#include <math.h>
diff --git a/src/dom/svg/svgtypes.h b/src/dom/svg/svgtypes.h index 4b1b87053..9b70178ea 100644 --- a/src/dom/svg/svgtypes.h +++ b/src/dom/svg/svgtypes.h @@ -13,7 +13,7 @@ * Authors:
* Bob Jamison
*
- * Copyright (C) 2005 Bob Jamison
+ * Copyright (C) 2006 Bob Jamison
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -32,19 +32,19 @@ // For access to DOM2 core
-#include "dom.h"
+#include "dom/dom.h"
// For access to DOM2 events
-#include "events.h"
+#include "dom/events.h"
// For access to those parts from DOM2 CSS OM used by SVG DOM.
-#include "css.h"
+#include "dom/css.h"
// For access to those parts from DOM2 Views OM used by SVG DOM.
-#include "views.h"
+#include "dom/views.h"
// For access to the SMIL OM used by SVG DOM.
-#include "smil.h"
+#include "dom/smil.h"
#include <math.h>
|
