Remove un-needed semi-colons

wilder-portage
Kurt Hindenburg 6 years ago
parent 5e56c44a64
commit db15532f6c
  1. 2
      src/TerminalDisplay.cpp
  2. 2
      src/TerminalHeaderBar.cpp

@ -4045,7 +4045,7 @@ CompositeWidgetFocusWatcher::CompositeWidgetFocusWatcher(QWidget *compositeWidge
bool CompositeWidgetFocusWatcher::eventFilter(QObject *watched, QEvent *event)
{
Q_UNUSED(watched);
Q_UNUSED(watched)
auto *focusEvent = static_cast<QFocusEvent *>(event);
switch(event->type()) {

@ -157,7 +157,7 @@ void TerminalHeaderBar::setFocusIndicatorState(bool focused)
void TerminalHeaderBar::updateNotification(ViewProperties *item, Session::Notification notification, bool enabled)
{
Q_UNUSED(item);
Q_UNUSED(item)
switch(notification) {
case Session::Notification::Silence:

Loading…
Cancel
Save