summaryrefslogtreecommitdiffstats
path: root/src/selection.cpp
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-08-18 00:39:23 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-08-18 00:39:23 +0000
commit20d3483a8de3268751045e61c6bc04a50506761c (patch)
tree07f73a4c0ad64abb6eaa550c088b4ebe8fda9484 /src/selection.cpp
parentUse the visible curve (instead of original curve when a LPE is applied) for t... (diff)
downloadinkscape-20d3483a8de3268751045e61c6bc04a50506761c.tar.gz
inkscape-20d3483a8de3268751045e61c6bc04a50506761c.zip
Many debugging messages
(bzr r6661)
Diffstat (limited to 'src/selection.cpp')
-rw-r--r--src/selection.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/selection.cpp b/src/selection.cpp
index 9e134ff08..65ec9941d 100644
--- a/src/selection.cpp
+++ b/src/selection.cpp
@@ -149,6 +149,7 @@ bool Selection::includes(SPObject *obj) const {
}
void Selection::add(SPObject *obj, bool persist_selection_context/* = false */) {
+ g_print ("Selection::add()\n");
g_return_if_fail(obj != NULL);
g_return_if_fail(SP_IS_OBJECT(obj));
@@ -210,6 +211,7 @@ void Selection::toggle(SPObject *obj) {
}
void Selection::remove(SPObject *obj) {
+ g_print ("Selection::remove()\n");
g_return_if_fail(obj != NULL);
g_return_if_fail(SP_IS_OBJECT(obj));
g_return_if_fail(includes(obj));