diff options
| author | Slagvi Public <JandotDarowskiattgmaildottcom> | 2013-09-20 14:48:10 +0000 |
|---|---|---|
| committer | Slagvi Public <JandotDarowskiattgmaildottcom> | 2013-09-20 14:48:10 +0000 |
| commit | 18bc66ea42cb3e7ad8d2b77ba70bd06d1b88cc7c (patch) | |
| tree | 9f80b03f3888dafb88e02c31a8142e372d21031a /src/file.h | |
| parent | Fix Empty Page procedural template. (diff) | |
| download | inkscape-18bc66ea42cb3e7ad8d2b77ba70bd06d1b88cc7c.tar.gz inkscape-18bc66ea42cb3e7ad8d2b77ba70bd06d1b88cc7c.zip | |
Change paths storage to std::string.
(bzr r12481.1.12)
Diffstat (limited to 'src/file.h')
| -rw-r--r-- | src/file.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/file.h b/src/file.h index 682ca422e..7f80f3645 100644 --- a/src/file.h +++ b/src/file.h @@ -16,6 +16,7 @@ */ #include <glibmm/ustring.h> +#include <string> #include "extension/system.h" class SPDesktop; @@ -43,7 +44,7 @@ Glib::ustring sp_file_default_template_uri(); * Creates a new Inkscape document and window. * Return value is a pointer to the newly created desktop. */ -SPDesktop* sp_file_new (const Glib::ustring &templ); +SPDesktop* sp_file_new (const std::string &templ); SPDesktop* sp_file_new_default (void); /*###################### |
