~ubuntu-branches/debian/experimental/inkscape/experimental

« back to all changes in this revision

Viewing changes to src/io/inkscapestream.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-09-09 23:29:02 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080909232902-c50iujhk1w79u8e7
Tags: 0.46-2.1
* Non-maintainer upload.
* Add upstream patch fixing a crash in the open dialog
  in the zh_CN.utf8 locale. Closes: #487623.
  Thanks to Luca Bruno for the patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
509
509
/**
510
510
 * Provide printf()-like formatting
511
511
 */ 
512
 
Writer &BasicWriter::printf(char *fmt, ...)
 
512
Writer &BasicWriter::printf(char const *fmt, ...)
513
513
{
514
514
    va_list args;
515
515
    va_start(args, fmt);
708
708
Writer& operator<< (Writer &writer, std::string &val)
709
709
    { return writer.writeStdString(val); }
710
710
 
711
 
Writer& operator<< (Writer &writer, char *val)
 
711
Writer& operator<< (Writer &writer, char const *val)
712
712
    { return writer.writeString(val); }
713
713
 
714
714
Writer& operator<< (Writer &writer, bool val)