diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-11-06 23:36:51 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2011-11-06 23:36:51 +0100 |
commit | 99088702058e5c1951901c64fc433703db68cd09 (patch) | |
tree | a00e3ea2674b8cc74e332bf794ffabe0ad99d25c /src | |
parent | 4910224d9f6273e6c78458353f6bbfec836ea35d (diff) |
Remove debugging output
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwindow.c | 1 | ||||
-rw-r--r-- | src/tool_select.c | 2 |
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 */ } |