summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDenis Declara <declara91@gmail.com>2012-05-09 15:09:29 +0000
committerDenis Declara <declara91@gmail.com>2012-05-09 15:09:29 +0000
commitc620ecb0f432de693f537f020999dfa4316b1859 (patch)
treefec3371fd583c69239c7e77fd47763a9c50e2882 /src
parentRenamed files to better match coding conventions (diff)
downloadinkscape-c620ecb0f432de693f537f020999dfa4316b1859.tar.gz
inkscape-c620ecb0f432de693f537f020999dfa4316b1859.zip
Removed debug output
(bzr r11073.1.32)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/polar-arrange-tab.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ui/dialog/polar-arrange-tab.cpp b/src/ui/dialog/polar-arrange-tab.cpp
index a1df794a5..32f05c5e8 100644
--- a/src/ui/dialog/polar-arrange-tab.cpp
+++ b/src/ui/dialog/polar-arrange-tab.cpp
@@ -261,8 +261,6 @@ void moveToPoint(int anchor, SPItem *item, Geom::Point p)
void PolarArrangeTab::arrange()
{
- std::cout << "PolarArrangeTab::arrange()" << std::endl;
-
Inkscape::Selection *selection = sp_desktop_selection(parent->getDesktop());
const GSList *items, *tmp;
tmp = items = selection->itemList();
@@ -313,7 +311,6 @@ void PolarArrangeTab::arrange()
arcBeg = referenceEllipse->start;
arcEnd = referenceEllipse->end;
- std::cout << "Arc: " << arcBeg << ", " << arcEnd << std::endl;
transformation = referenceEllipse->i2dt_affine();
// We decrement the count by 1 as we are not going to lay
@@ -362,8 +359,6 @@ void PolarArrangeTab::arrange()
rotateAround(item, newLocation, Geom::Rotate(angle));
}
- std::cout << "object " << i << " out of " << count << ": " << angle << std::endl;
-
++i;
}
tmp = tmp->next;