diff options
author | Benjamin Otte <otte@redhat.com> | 2016-03-20 05:36:17 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-03-20 05:36:17 +0100 |
commit | d42ba8a82a3e94086239b8039b93678bdebc88db (patch) | |
tree | b071d21e09749944af891bacf6f5d681ce8870fb /tests/testselection.c | |
parent | 07a69b724748ed8f1166ece34e15aa387bb2f674 (diff) | |
download | gtk+-d42ba8a82a3e94086239b8039b93678bdebc88db.tar.gz |
tests: Add missing break statements
http://www.viva64.com/en/b/0383/
Diffstat (limited to 'tests/testselection.c')
-rw-r--r-- | tests/testselection.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/testselection.c b/tests/testselection.c index a0fd29458b..35d8887294 100644 --- a/tests/testselection.c +++ b/tests/testselection.c @@ -185,8 +185,10 @@ selection_get (GtkWidget *widget, case COMPOUND_TEXT: case TEXT: type = seltypes[COMPOUND_TEXT]; + break; case STRING: type = seltypes[STRING]; + break; } gtk_selection_data_set (selection_data, type, 8, buffer, len); |