diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2008-12-07 00:44:56 +0000 |
|---|---|---|
| committer | tweenk <tweenk@users.sourceforge.net> | 2008-12-07 00:44:56 +0000 |
| commit | 45335a6bcb990a2e8e481d6fd25679a795e8f928 (patch) | |
| tree | 7540392f16fe52b820013a0d78685576f8d89cd5 /src/svg | |
| parent | Removed duplication of menu items. (diff) | |
| download | inkscape-45335a6bcb990a2e8e481d6fd25679a795e8f928.tar.gz inkscape-45335a6bcb990a2e8e481d6fd25679a795e8f928.zip | |
Change the way preferences are loaded to simplify unit testing
(bzr r6964)
Diffstat (limited to 'src/svg')
| -rw-r--r-- | src/svg/Makefile_insert | 12 | ||||
| -rw-r--r-- | src/svg/svg-affine.cpp | 15 |
2 files changed, 22 insertions, 5 deletions
diff --git a/src/svg/Makefile_insert b/src/svg/Makefile_insert index 45a1a7db3..6a6c7bcd2 100644 --- a/src/svg/Makefile_insert +++ b/src/svg/Makefile_insert @@ -52,6 +52,8 @@ svg_test_svg_includes = \ svg_libtest_svg_a_SOURCES = \ svg/test-svg.cpp \ + preferences.cpp \ + sp-object.cpp \ $(svg_test_svg_includes) svg_libtest_stubs_a_SOURCES = \ @@ -62,9 +64,15 @@ svg_test_svg_SOURCES = \ $(svg_test_svg_includes) svg_test_svg_LDADD = \ - svg/libspsvg.a \ + svg/libspsvg.a \ svg/libtest-svg.a \ svg/libtest-stubs.a \ 2geom/lib2geom.a \ - libnr/libnr.a \ + libnr/libnr.a \ + xml/libspxml.a \ + util/libinkutil.a \ + io/libio.a \ + libinkpost.a \ + debug/libinkdebug.a \ + libcroco/libcroco.a \ $(INKSCAPE_LIBS) diff --git a/src/svg/svg-affine.cpp b/src/svg/svg-affine.cpp index 1077f7e2f..1ff9776e5 100644 --- a/src/svg/svg-affine.cpp +++ b/src/svg/svg-affine.cpp @@ -1,5 +1,3 @@ -#define __SP_SVG_AFFINE_C__ - /* * SVG data parser * @@ -251,4 +249,15 @@ gchar * sp_svg_transform_write(Geom::Matrix const *transform) { return sp_svg_transform_write(*transform); -}
\ No newline at end of file +} + +/* + 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 : |
