diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2008-07-09 03:34:50 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2008-07-09 03:34:50 +0000 |
| commit | fae0fc4d61a53b37c49e74bef5ac14f1c14187ec (patch) | |
| tree | 74760df98ca413c686ed6efd8fa39d047ae4f186 /src | |
| parent | remove fractional digits from hscales, we cannot drag with such precision anyway (diff) | |
| download | inkscape-fae0fc4d61a53b37c49e74bef5ac14f1c14187ec.tar.gz inkscape-fae0fc4d61a53b37c49e74bef5ac14f1c14187ec.zip | |
Warning cleanup
(bzr r6241)
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/internal/odf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/internal/odf.cpp b/src/extension/internal/odf.cpp index 4efebdafd..14a1981d5 100644 --- a/src/extension/internal/odf.cpp +++ b/src/extension/internal/odf.cpp @@ -1095,7 +1095,7 @@ OdfOutput::preprocess(ZipFile &zf, Inkscape::XML::Node *node) { char buf[64]; snprintf(buf, sizeof(buf), "Pictures/image%u%s", - imageTable.size(), ext.c_str()); + static_cast<unsigned int>(imageTable.size()), ext.c_str()); Glib::ustring newName = buf; imageTable[oldName] = newName; Glib::ustring comment = "old name was: "; |
