Fix a bunch of warnings

This commit is contained in:
SirLynix
2022-11-13 16:12:49 +01:00
parent 71c5133c7a
commit 842e797cc4
34 changed files with 47 additions and 90 deletions

View File

@@ -20,7 +20,7 @@ namespace Nz
public:
ScrollAreaWidget(BaseWidget* parent, BaseWidget* content);
ScrollAreaWidget(const ScrollAreaWidget&) = delete;
ScrollAreaWidget(ScrollAreaWidget&&) = default;
ScrollAreaWidget(ScrollAreaWidget&&) = delete;
~ScrollAreaWidget() = default;
void EnableScrollbar(bool enable);
@@ -36,7 +36,7 @@ namespace Nz
void ScrollToRatio(float ratio);
ScrollAreaWidget& operator=(const ScrollAreaWidget&) = delete;
ScrollAreaWidget& operator=(ScrollAreaWidget&&) = default;
ScrollAreaWidget& operator=(ScrollAreaWidget&&) = delete;
private:
void Layout() override;