summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryce Harrington <bryce@bryceharrington.org>2008-01-05 02:50:35 +0000
committerbryce <bryce@users.sourceforge.net>2008-01-05 02:50:35 +0000
commit8a6d409bf694b4a4972acf5a80f040492d70df24 (patch)
tree771825dec0ae7cf4d8603deb9777a90556c32ee1
parentOnly set style of box sides during creation (not upon every repr write). (diff)
downloadinkscape-8a6d409bf694b4a4972acf5a80f040492d70df24.tar.gz
inkscape-8a6d409bf694b4a4972acf5a80f040492d70df24.zip
Fix missing include for g_assert() calls - causes FTBFS on Ubuntu Hardy
currently. (bzr r4389)
-rw-r--r--share/tutorials/tutorial-basic.svg2
-rw-r--r--src/attributes.cpp1
-rw-r--r--src/axis-manip.h1
-rw-r--r--src/color-rgba.h3
-rw-r--r--src/debug/simple-event.h6
-rw-r--r--src/display/bezier-utils.cpp1
-rw-r--r--src/helper/units.cpp1
-rw-r--r--src/io/resource.cpp1
-rw-r--r--src/libnr/nr-matrix.h1
-rw-r--r--src/svg/svg-color.cpp1
-rw-r--r--src/svg/svg-path.cpp13
-rw-r--r--src/xml/event.cpp2
-rw-r--r--src/xml/node-fns.cpp1
-rw-r--r--src/xml/simple-document.cpp2
-rw-r--r--src/xml/simple-node.h2
15 files changed, 28 insertions, 10 deletions
diff --git a/share/tutorials/tutorial-basic.svg b/share/tutorials/tutorial-basic.svg
index b994bb432..2b31b4aca 100644
--- a/share/tutorials/tutorial-basic.svg
+++ b/share/tutorials/tutorial-basic.svg
@@ -559,4 +559,4 @@ graphics. For more complicated stuff, go through the Advanced and other tutorial
<use style="opacity:0.084269650;color:#000000;fill:#ffffff;fill-opacity:0.064615376;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" height="1052.3622" width="744.09448" transform="matrix(5.176729,0.000000,0.000000,5.176729,-102.7023,-256.6246)" id="use1328" xlink:href="#path1508" y="0.0000000" x="0.0000000"/>
<text xml:space="preserve" style="font-size:6.96932268px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:0.5;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" x="-70.83046" y="-6.5672836" id="text7519" sodipodi:linespacing="125%" transform="matrix(0,-1,1,0,0,0)"><tspan sodipodi:role="line" id="tspan7521" x="-70.83046" y="-6.5672836" style="letter-spacing:0.29056421">Use <tspan style="font-weight:bold" id="tspan7523">Ctrl+up arrow</tspan> to scroll </tspan></text>
<path sodipodi:type="star" style="opacity:0.5;color:black;fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.32172871;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" id="path7527" sodipodi:sides="3" sodipodi:cx="332.34018" sodipodi:cy="193.40422" sodipodi:r1="7.6034532" sodipodi:r2="3.8017266" sodipodi:arg1="0.62024949" sodipodi:arg2="1.667447" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="M 338.52736,197.82364 L 325.41926,196.55277 L 333.07392,185.83625 L 338.52736,197.82364 z " transform="matrix(-0.614962,-4.549602e-2,-6.191898e-2,0.451855,207.7892,-117.1536)"/>
- </g></g></svg> \ No newline at end of file
+ </g></g></svg>
diff --git a/src/attributes.cpp b/src/attributes.cpp
index 8232065fc..be5dedc24 100644
--- a/src/attributes.cpp
+++ b/src/attributes.cpp
@@ -17,6 +17,7 @@
# include "config.h"
#endif
+#include <glib/gtestutils.h>
#include <glib/ghash.h>
#include "attributes.h"
diff --git a/src/axis-manip.h b/src/axis-manip.h
index e5cc963ba..0021630a0 100644
--- a/src/axis-manip.h
+++ b/src/axis-manip.h
@@ -12,6 +12,7 @@
#ifndef SEEN_AXIS_MANIP_H
#define SEEN_AXIS_MANIP_H
+#include <glib/gtestutils.h>
#include <gtk/gtk.h>
#include "libnr/nr-point.h"
diff --git a/src/color-rgba.h b/src/color-rgba.h
index 59a15f3c0..b968f3de1 100644
--- a/src/color-rgba.h
+++ b/src/color-rgba.h
@@ -1,7 +1,7 @@
/** \file color-rgba.h
A class to handle a RGBA color as one unit.
-
+
Authors:
bulia byak <buliabyak@gmail.com>
@@ -12,6 +12,7 @@
#ifndef SEEN_COLOR_RGBA_H
#define SEEN_COLOR_RGBA_H
+#include <glib/gtestutils.h>
#include <glib/gmessages.h>
#include "libnr/nr-pixops.h"
#include "decimal-round.h"
diff --git a/src/debug/simple-event.h b/src/debug/simple-event.h
index 24f1c7545..3126f10f1 100644
--- a/src/debug/simple-event.h
+++ b/src/debug/simple-event.h
@@ -14,8 +14,10 @@
#include <stdarg.h>
#include <vector>
-#include "glib/gstrfuncs.h"
-#include "glib/gmessages.h"
+#include <glib/gtestutils.h>
+#include <glib/gstrfuncs.h>
+#include <glib/gmessages.h>
+
#include "gc-alloc.h"
#include "debug/event.h"
diff --git a/src/display/bezier-utils.cpp b/src/display/bezier-utils.cpp
index 7dadc0a7b..95b1a5eb1 100644
--- a/src/display/bezier-utils.cpp
+++ b/src/display/bezier-utils.cpp
@@ -33,6 +33,7 @@
# include <ieeefp.h>
#endif
+#include <glib/gtestutils.h>
#include <glib/gmessages.h>
#include <glib/gmem.h>
#include "bezier-utils.h"
diff --git a/src/helper/units.cpp b/src/helper/units.cpp
index 448f60302..45d6d27f9 100644
--- a/src/helper/units.cpp
+++ b/src/helper/units.cpp
@@ -20,6 +20,7 @@
#endif
#include "helper/units.h"
+#include <glib/gtestutils.h>
#include <glibmm/i18n.h>
#include "unit-constants.h"
#include "svg/svg-length.h"
diff --git a/src/io/resource.cpp b/src/io/resource.cpp
index b4dca3233..267a82d01 100644
--- a/src/io/resource.cpp
+++ b/src/io/resource.cpp
@@ -16,6 +16,7 @@
#include "config.h"
#endif
+#include <glib/gtestutils.h>
#include <glib/gmessages.h>
#include <glib/gstrfuncs.h>
#include <glib/gfileutils.h>
diff --git a/src/libnr/nr-matrix.h b/src/libnr/nr-matrix.h
index 767c2105b..0205ab04f 100644
--- a/src/libnr/nr-matrix.h
+++ b/src/libnr/nr-matrix.h
@@ -17,6 +17,7 @@
* This code is in public domain.
*/
+#include <glib/gtestutils.h>
#include <glib/gmessages.h>
#include "libnr/nr-coord.h"
diff --git a/src/svg/svg-color.cpp b/src/svg/svg-color.cpp
index 677c81c1a..f0a2ae79d 100644
--- a/src/svg/svg-color.cpp
+++ b/src/svg/svg-color.cpp
@@ -23,6 +23,7 @@
#include <cassert>
#include <math.h>
#include <glib/gmem.h>
+#include <glib/gtestutils.h>
#include <glib/gmessages.h>
#include <glib/gstrfuncs.h>
#include <glib/ghash.h>
diff --git a/src/svg/svg-path.cpp b/src/svg/svg-path.cpp
index c56898697..86d8bc162 100644
--- a/src/svg/svg-path.cpp
+++ b/src/svg/svg-path.cpp
@@ -1,26 +1,26 @@
#define __SP_SVG_PARSE_C__
-/*
+/*
svg-path.c: Parse SVG path element data into bezier path.
-
+
Copyright (C) 2000 Eazel, Inc.
Copyright (C) 2000 Lauris Kaplinski
Copyright (C) 2001 Ximian, Inc.
-
+
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
-
+
You should have received a copy of the GNU General Public
License along with this program; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
-
+
Authors:
Raph Levien <raph@artofcode.com>
Lauris Kaplinski <lauris@ximian.com>
@@ -30,6 +30,7 @@
#include <glib/gmem.h>
#include <glib/gmessages.h>
#include <glib/gstrfuncs.h>
+#include <glib/gtestutils.h>
#include "libnr/n-art-bpath.h"
#include "gnome-canvas-bpath-util.h"
diff --git a/src/xml/event.cpp b/src/xml/event.cpp
index 40f3029e1..0e852ce97 100644
--- a/src/xml/event.cpp
+++ b/src/xml/event.cpp
@@ -13,6 +13,8 @@
* Released under GNU GPL, read the file 'COPYING' for more information
*/
+#include <glib/gtestutils.h>
+
#include "event.h"
#include "event-fns.h"
#include "util/reverse-list.h"
diff --git a/src/xml/node-fns.cpp b/src/xml/node-fns.cpp
index 16947e66e..69317e2a6 100644
--- a/src/xml/node-fns.cpp
+++ b/src/xml/node-fns.cpp
@@ -3,6 +3,7 @@
#endif
#include <map>
+#include <glib/gtestutils.h>
#include "xml/node-iterators.h"
#include "algorithms/find-if-before.h"
diff --git a/src/xml/simple-document.cpp b/src/xml/simple-document.cpp
index 4063abde4..c06c0ed69 100644
--- a/src/xml/simple-document.cpp
+++ b/src/xml/simple-document.cpp
@@ -12,6 +12,8 @@
*
*/
+#include <glib/gtestutils.h>
+
#include "xml/simple-document.h"
#include "xml/event-fns.h"
#include "xml/element-node.h"
diff --git a/src/xml/simple-node.h b/src/xml/simple-node.h
index b4439e289..3bd2f58b4 100644
--- a/src/xml/simple-node.h
+++ b/src/xml/simple-node.h
@@ -15,6 +15,8 @@
#ifndef SEEN_INKSCAPE_XML_SIMPLE_NODE_H
#define SEEN_INKSCAPE_XML_SIMPLE_NODE_H
+#include <glib/gtestutils.h>
+
#include "xml/node.h"
#include "xml/attribute-record.h"
#include "xml/composite-node-observer.h"