aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-04-08 00:05:50 +0800
committerDan Winship <danw@src.gnome.org>2001-04-08 00:05:50 +0800
commitc457df3f5cd3a68579c8c7f5fc549d0754c61d5f (patch)
tree7ff39da97bdc5a22e80e7c8d666d7ac6e6aa27bc
parente41232fb9197001454cfbd49f7fd4c5d0db2cb17 (diff)
downloadgsoc2013-evolution-c457df3f5cd3a68579c8c7f5fc549d0754c61d5f.tar
gsoc2013-evolution-c457df3f5cd3a68579c8c7f5fc549d0754c61d5f.tar.gz
gsoc2013-evolution-c457df3f5cd3a68579c8c7f5fc549d0754c61d5f.tar.bz2
gsoc2013-evolution-c457df3f5cd3a68579c8c7f5fc549d0754c61d5f.tar.lz
gsoc2013-evolution-c457df3f5cd3a68579c8c7f5fc549d0754c61d5f.tar.xz
gsoc2013-evolution-c457df3f5cd3a68579c8c7f5fc549d0754c61d5f.tar.zst
gsoc2013-evolution-c457df3f5cd3a68579c8c7f5fc549d0754c61d5f.zip
add a missing \
* tests/test-tree-3.c (INITIAL_SPEC): add a missing \ * gal/e-text/e-text.c (_get_position_from_xy): Add a "break;" to an otherwise-empty default case to make it ANSI. svn path=/trunk/; revision=9201
-rw-r--r--widgets/text/e-text.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c
index adef2dffa3..a8bae6a1f0 100644
--- a/widgets/text/e-text.c
+++ b/widgets/text/e-text.c
@@ -2501,6 +2501,7 @@ _get_position_from_xy (EText *text, gint x, gint y)
y += text->num_lines * font_ht;
default:
/* Do nothing */
+ break;
}