aboutsummaryrefslogtreecommitdiff
path: root/src/tool_select.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-10-12 09:34:17 +0200
committerThomas White <taw@bitwiz.org.uk>2011-10-12 09:34:17 +0200
commit4da0c6ebc1db54c1c52cbdda98098b7d3efb1de7 (patch)
tree060e1a55402f7d55a592df34d7aaef059af9cac3 /src/tool_select.c
parent80224ffa532362f66e905ecf3b599fff17bb2e39 (diff)
Remove dead code and tidy up resize logic
Diffstat (limited to 'src/tool_select.c')
-rw-r--r--src/tool_select.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/tool_select.c b/src/tool_select.c
index 57e6721..a3a8c39 100644
--- a/src/tool_select.c
+++ b/src/tool_select.c
@@ -43,13 +43,6 @@ struct select_toolinfo
};
-static void click_create(struct presentation *p, struct toolinfo *tip,
- double x, double y)
-{
- /* Do absolutely nothing */
-}
-
-
static void click_select(struct presentation *p, struct toolinfo *tip,
double x, double y, GdkEventButton *event,
enum drag_status *drag_status,
@@ -143,7 +136,6 @@ struct toolinfo *initialise_select_tool()
ti = malloc(sizeof(*ti));
- ti->base.click_create = click_create;
ti->base.click_select = click_select;
ti->base.create_default = NULL;
ti->base.select = select_object;