Fix warning about missing virtual destructor

This commit is contained in:
Simon Hausmann 2022-12-12 14:40:07 +01:00
parent 8e3df98ffe
commit 2d72781f9f

View file

@ -34,6 +34,8 @@ concept Renderer = requires(R r)
class AbstractWindowAdapter
{
public:
virtual ~AbstractWindowAdapter() { }
/// This function is called by Slint when the slint window is shown.
///
/// Re-implement this function to forward the call to show to the native window