diff options
| author | Greg Ercolano <erco@seriss.com> | 2018-07-20 05:21:14 +0000 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2018-07-20 05:21:14 +0000 |
| commit | 1f5588c3dd096428112561feaeb57381af080105 (patch) | |
| tree | d48af35d8ad0c0a415ca962e482a90841ce55df4 | |
| parent | 99cf1dd8581efde273680a92f8986ad4991857a6 (diff) | |
Added fallthru indication in Fl_Button::handle()
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12992 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Fl_Button.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Fl_Button.cxx b/src/Fl_Button.cxx index 5207234bd..8484db7d6 100644 --- a/src/Fl_Button.cxx +++ b/src/Fl_Button.cxx @@ -164,6 +164,7 @@ int Fl_Button::handle(int event) { if (when() & FL_WHEN_RELEASE) do_callback(); return 1; } + /* FALLTHROUGH */ default: return 0; } |
