Skip to content

Commit

Permalink
SVPaint: Remove empty block
Browse files Browse the repository at this point in the history
This fixes a warning from LGTM:

    Empty block without comment

Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Oct 8, 2018
1 parent 9c857ab commit 1eeca17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/viewer/svpaint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ void SVPaint::Notify(const SVEvent* sv_event) {
else if (sv_event->type == SVET_SELECTION) { SelectionHandler(sv_event); }
else if (sv_event->type == SVET_MENU) { MenuBarHandler(sv_event); }
else if (sv_event->type == SVET_POPUP) { PopupHandler(sv_event); }
else {} //throw other events away
//throw other events away
}

// Builds a new window, initializes the variables and event handler and builds
Expand Down

0 comments on commit 1eeca17

Please sign in to comment.