From 03db0c480e70a8855e06dbb037e1214b59444120 Mon Sep 17 00:00:00 2001 From: baldurk Date: Fri, 15 Jan 2021 21:40:24 +0000 Subject: [PATCH] Fix override warning --- qrenderdoc/Windows/PythonShell.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qrenderdoc/Windows/PythonShell.cpp b/qrenderdoc/Windows/PythonShell.cpp index 47102d341..2344f238a 100644 --- a/qrenderdoc/Windows/PythonShell.cpp +++ b/qrenderdoc/Windows/PythonShell.cpp @@ -225,8 +225,7 @@ struct MiniQtInvoker : ObjectForwarder } QWidget *CreateLabel() { return InvokeRetFunction(&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); }