~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/dom/lsimpl.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-07-06 22:03:02 UTC
  • mto: (2.4.1 sid) (1.4.1 upstream) (45.1.3 maverick)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20060706220302-itgso3qgxdaxjmcy
Tags: upstream-0.44
ImportĀ upstreamĀ versionĀ 0.44

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
            int ch = lsreader->get();
77
77
            if (ch < 0)
78
78
                break;
79
 
            buf.push_back(ch);
 
79
            buf.push_back((XMLCh)ch);
80
80
            }
81
81
        XmlReader reader;
82
82
        Document *doc = reader.parse(buf);
92
92
            int ch = inputStream->get();
93
93
            if (ch < 0)
94
94
                break;
95
 
            buf.push_back(ch);
 
95
            buf.push_back((XMLCh)ch);
96
96
            }
97
97
        XmlReader reader;
98
98
        Document *doc = reader.parse(buf);
176
176
{
177
177
    outbuf = "";
178
178
    indent = 0;
179
 
    
 
179
 
180
180
    writeNode(nodeArg);
181
181
 
182
182
    //## Check in order specified in the L&S specs