summaryrefslogtreecommitdiffstats
path: root/src/inkscape.cpp
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2007-02-26 08:05:15 +0000
committermental <mental@users.sourceforge.net>2007-02-26 08:05:15 +0000
commit2ba9cef957b7251d6f929ba9826c9c266839301a (patch)
tree6d49ec90596c92af6c23d4481692aa7d96928c9e /src/inkscape.cpp
parentCheck for GGO_UNHINTED not being defined (diff)
downloadinkscape-2ba9cef957b7251d6f929ba9826c9c266839301a.tar.gz
inkscape-2ba9cef957b7251d6f929ba9826c9c266839301a.zip
get rid of sp_repr_document wrapper function
(bzr r2445)
Diffstat (limited to 'src/inkscape.cpp')
-rw-r--r--src/inkscape.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inkscape.cpp b/src/inkscape.cpp
index ac2a64ed7..016384274 100644
--- a/src/inkscape.cpp
+++ b/src/inkscape.cpp
@@ -452,7 +452,7 @@ inkscape_crash_handler (int signum)
file = Inkscape::IO::fopen_utf8name(c, "w");
}
if (file) {
- sp_repr_save_stream (sp_repr_document (repr), file, SP_SVG_NS_URI);
+ sp_repr_save_stream (repr->document(), file, SP_SVG_NS_URI);
savednames = g_slist_prepend (savednames, g_strdup (c));
fclose (file);
} else {