Fix override warning

This commit is contained in:
baldurk
2021-01-15 21:40:24 +00:00
parent ee5d3f5837
commit 03db0c480e
+1 -2
View File
@@ -225,8 +225,7 @@ struct MiniQtInvoker : ObjectForwarder<IMiniQtHelper>
}
QWidget *CreateLabel() { return InvokeRetFunction<QWidget *>(&IMiniQtHelper::CreateLabel); }
void SetLabelImage(QWidget *widget, const bytebuf &data, int32_t width, int32_t height,
bool alpha) override
void SetLabelImage(QWidget *widget, const bytebuf &data, int32_t width, int32_t height, bool alpha)
{
InvokeVoidFunction(&IMiniQtHelper::SetLabelImage, widget, data, width, height, alpha);
}