NO-OP: whitespace

This fixes mostly <tab> after <space> and similar <tab> not used
for indenting as well as some related code alignment issues.
This commit is contained in:
Robin Gareus 2019-04-13 17:48:27 +02:00
parent 90a7bef656
commit 31815b5f26
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
33 changed files with 268 additions and 287 deletions

View file

@ -353,14 +353,14 @@ void
RouteParams_UI::cleanup_view (bool stopupdate)
{
if (_active_view) {
GenericPluginUI * plugui = 0;
GenericPluginUI* plugui = 0;
if (stopupdate && (plugui = dynamic_cast<GenericPluginUI*>(_active_view)) != 0) {
plugui->stop_updating (0);
plugui->stop_updating (0);
}
_processor_going_away_connection.disconnect ();
redir_hpane.remove(*_active_view);
redir_hpane.remove(*_active_view);
delete _active_view;
_active_view = 0;
}