diff options
author | David Robillard <d@drobilla.net> | 2011-12-08 22:35:58 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-08 22:35:58 +0000 |
commit | cb09240a5a56a414e817e65433859b0c398d729f (patch) | |
tree | 856333e0dc966a5465851a92426ad86188a5b5ed /src | |
parent | cf71d7ee9914de3936456eebe6d87948b46b2e57 (diff) | |
download | ganv-cb09240a5a56a414e817e65433859b0c398d729f.tar.gz ganv-cb09240a5a56a414e817e65433859b0c398d729f.tar.bz2 ganv-cb09240a5a56a414e817e65433859b0c398d729f.zip |
Delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@3838 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/Canvas.cpp | 4 | ||||
-rw-r--r-- | src/Port.cpp | 2 | ||||
-rw-r--r-- | src/module.c | 2 | ||||
-rw-r--r-- | src/text.c | 6 |
4 files changed, 7 insertions, 7 deletions
diff --git a/src/Canvas.cpp b/src/Canvas.cpp index c969f31..692f3ee 100644 --- a/src/Canvas.cpp +++ b/src/Canvas.cpp @@ -336,7 +336,7 @@ select_if_tail_is_selected(GanvEdge* edge) g_object_get(ganv_port_get_module(GANV_PORT(tail)), "selected", &selected, NULL); } - + if (selected) { ganv_edge_select(edge); } @@ -352,7 +352,7 @@ select_if_head_is_selected(GanvEdge* edge) g_object_get(ganv_port_get_module(GANV_PORT(head)), "selected", &selected, NULL); } - + if (selected) { ganv_edge_select(edge); } diff --git a/src/Port.cpp b/src/Port.cpp index e6298f8..36c556a 100644 --- a/src/Port.cpp +++ b/src/Port.cpp @@ -46,5 +46,5 @@ Port::get_module() const { return Glib::wrap(ganv_port_get_module(gobj())); } - + } // namespace Ganv diff --git a/src/module.c b/src/module.c index ac8cc58..c4e72b1 100644 --- a/src/module.c +++ b/src/module.c @@ -714,7 +714,7 @@ ganv_module_get_empty_port_depth(const GanvModule* module) GNOME_CANVAS_ITEM(module)->canvas); return ganv_canvas_get_font_size(canvas); -} +} void ganv_module_set_icon(GanvModule* module, @@ -135,7 +135,7 @@ ganv_text_layout(GanvText* text) cairo_destroy(cr); g_object_unref(layout); pango_font_description_free(font); - + impl->needs_layout = FALSE; gnome_canvas_item_request_update(GNOME_CANVAS_ITEM(text)); } @@ -185,7 +185,7 @@ ganv_text_get_property(GObject* object, || prop_id == PROP_HEIGHT)) { ganv_text_layout(text); } - + switch (prop_id) { GET_CASE(TEXT, string, impl->text); GET_CASE(X, double, impl->coords.x); @@ -308,7 +308,7 @@ ganv_text_draw(GnomeCanvasItem* item, // Round to the nearest pixel so text isn't blurry wx = lrint(wx - x); wy = lrint(wy - y); - + cairo_set_source_surface(cr, impl->surface, wx, wy); cairo_paint(cr); |