aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-11-06 23:36:51 +0100
committerThomas White <taw@bitwiz.org.uk>2011-11-06 23:36:51 +0100
commit99088702058e5c1951901c64fc433703db68cd09 (patch)
treea00e3ea2674b8cc74e332bf794ffabe0ad99d25c
parent4910224d9f6273e6c78458353f6bbfec836ea35d (diff)
Remove debugging output
-rw-r--r--src/mainwindow.c1
-rw-r--r--src/tool_select.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c
index fce5306..dfd3fe6 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -1085,7 +1085,6 @@ void update_titlebar(struct presentation *p)
title = malloc(strlen(p->titlebar)+14);
sprintf(title, "%s - Colloquium", p->titlebar);
gtk_window_set_title(GTK_WINDOW(p->window), title);
- printf("Set title '%s'\n", title);
free(title);
}
diff --git a/src/tool_select.c b/src/tool_select.c
index 1fb66c7..55f8894 100644
--- a/src/tool_select.c
+++ b/src/tool_select.c
@@ -91,7 +91,7 @@ static void end_drag(struct toolinfo *tip, struct presentation *p,
static void create_region(struct toolinfo *tip, struct presentation *p,
double x1, double y1, double x2, double y2)
{
- printf("Create %5.2f %5.2f %5.2f %5.2f\n", x1, y1, x2, y2);
+ /* FIXME: Select multiple objects */
}