summaryrefslogtreecommitdiffstats
path: root/src/pen-context.cpp
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-08-18 00:48:37 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-08-18 00:48:37 +0000
commit945467caca4ad1f034900c8109d7967b879b6627 (patch)
treec5c69480eb437108994c9d6ac02320d9ddfa5344 /src/pen-context.cpp
parentCheck whether we are really in LPEToolContext in sp_lpetool_toolbox_sel_chang... (diff)
downloadinkscape-945467caca4ad1f034900c8109d7967b879b6627.tar.gz
inkscape-945467caca4ad1f034900c8109d7967b879b6627.zip
Remove debugging messages
(bzr r6689)
Diffstat (limited to 'src/pen-context.cpp')
-rw-r--r--src/pen-context.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/pen-context.cpp b/src/pen-context.cpp
index b7182ac51..2d1a48d3a 100644
--- a/src/pen-context.cpp
+++ b/src/pen-context.cpp
@@ -361,7 +361,6 @@ sp_pen_context_item_handler(SPEventContext *ec, SPItem *item, GdkEvent *event)
static gint
sp_pen_context_root_handler(SPEventContext *ec, GdkEvent *event)
{
- g_print ("sp_pen_context_root_handler()\n");
SPPenContext *const pc = SP_PEN_CONTEXT(ec);
gint ret = FALSE;
@@ -1387,9 +1386,6 @@ sp_pen_context_wait_for_LPE_mouse_clicks(SPPenContext *pc, Inkscape::LivePathEff
if (effect_type == Inkscape::LivePathEffect::INVALID_LPE)
return;
- g_print ("Now waiting for %s to be applied\n",
- Inkscape::LivePathEffect::LPETypeConverter.get_label(effect_type).c_str());
-
pc->waiting_LPE_type = effect_type;
pc->expecting_clicks_for_LPE = num_clicks;
pc->polylines_only = use_polylines;
@@ -1399,9 +1395,6 @@ sp_pen_context_wait_for_LPE_mouse_clicks(SPPenContext *pc, Inkscape::LivePathEff
void
sp_pen_context_cancel_waiting_for_LPE(SPPenContext *pc)
{
- g_print ("Cancelled waiting for mouse clicks for %s\n",
- Inkscape::LivePathEffect::LPETypeConverter.get_label(pc->waiting_LPE_type).c_str());
-
pc->waiting_LPE_type = Inkscape::LivePathEffect::INVALID_LPE;
pc->expecting_clicks_for_LPE = 0;
sp_pen_context_set_polyline_mode(pc);