summaryrefslogtreecommitdiffstats
path: root/src/livarot/Shape.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2007-02-19 18:10:02 +0000
committerjoncruz <joncruz@users.sourceforge.net>2007-02-19 18:10:02 +0000
commitb0cc28bf898225878290d34dc569585847cfff48 (patch)
treef176c3305b05c2ab9027864e0747bfdbc3a136ba /src/livarot/Shape.cpp
parentnow at least the first opening of the first gtkmm dialog opens it in-place wi... (diff)
downloadinkscape-b0cc28bf898225878290d34dc569585847cfff48.tar.gz
inkscape-b0cc28bf898225878290d34dc569585847cfff48.zip
Fixed unintialized variables and minor misc warnings
(bzr r2398)
Diffstat (limited to 'src/livarot/Shape.cpp')
-rw-r--r--src/livarot/Shape.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/livarot/Shape.cpp b/src/livarot/Shape.cpp
index 1a2f63871..c694cdd27 100644
--- a/src/livarot/Shape.cpp
+++ b/src/livarot/Shape.cpp
@@ -51,7 +51,7 @@ Shape::~Shape (void)
void Shape::Affiche(void)
{
- printf("sh=%p nbPt=%i nbAr=%i\n",this, _pts.size(), _aretes.size()); // localizing ok
+ printf("sh=%p nbPt=%i nbAr=%i\n", this, static_cast<int>(_pts.size()), static_cast<int>(_aretes.size())); // localizing ok
for (unsigned int i=0; i<_pts.size(); i++) {
printf("pt %i : x=(%f %f) dI=%i dO=%i\n",i, _pts[i].x[0], _pts[i].x[1], _pts[i].dI, _pts[i].dO); // localizing ok
}