summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d78699a)
raw | patch | inline | side by side (parent: d78699a)
author | ishmal <ishmal@users.sourceforge.net> | |
Mon, 28 Apr 2008 17:17:32 +0000 (17:17 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Mon, 28 Apr 2008 17:17:32 +0000 (17:17 +0000) |
src/dom/io/uristream.cpp | patch | blob | history |
index 3934169c615c520d71398b4a1497a61ae44a0047..b86a714424361dfc179451c3397fdd67b942c4d8 100644 (file)
--- a/src/dom/io/uristream.cpp
+++ b/src/dom/io/uristream.cpp
* Authors:
* Bob Jamison
*
- * Copyright (C) 2005 Bob Jamison
+ * Copyright (C) 2005-2008 Bob Jamison
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-/**
- * Our base String stream classes. We implement these to
- * be based on DOMString
- *
- * Authors:
- * Bob Jamison <rjamison@titan.com>
- *
- * Copyright (C) 2004 Inkscape.org
- *
- * Released under GNU GPL, read the file 'COPYING' for more information
- */
#include "uristream.h"
data = (unsigned char *) uri.getPath().c_str();
//printf("in data:'%s'\n", data);
dataPos = 0;
- dataLen = strlen((const char *)data);
+ dataLen = uri.getPath().size();
break;
}