1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-03-27 14:50:21 +03:00

fix no return in nonvoid function

This commit is contained in:
audoban 2017-04-03 02:31:40 -05:00
parent a65921bad0
commit 569ad5ab40

View File

@ -523,6 +523,8 @@ bool VisibilityManagerPrivate::event(QEvent *ev)
break;
}
// Make sure the rest of events are handled
return QObject::event(ev);
}
//! END: VisibilityManagerPrivate implementation