mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 20:13:36 +00:00
Fixed some compiler warnings and marked OnRedraw as virtual. Oops.
This commit is contained in:
parent
5748e47151
commit
3a0ed06a2b
@ -55,15 +55,15 @@ namespace cursespp {
|
|||||||
|
|
||||||
virtual void Layout() override;
|
virtual void Layout() override;
|
||||||
virtual bool KeyPress(const std::string& key) override;
|
virtual bool KeyPress(const std::string& key) override;
|
||||||
virtual void ProcessMessage(musik::core::runtime::IMessage &message);
|
virtual void ProcessMessage(musik::core::runtime::IMessage &message) override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void OnVisibilityChanged(bool visible);
|
virtual void OnVisibilityChanged(bool visible) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ToastOverlay(const std::string& text, long durationMs);
|
ToastOverlay(const std::string& text, long durationMs);
|
||||||
|
|
||||||
void OnRedraw();
|
virtual void OnRedraw() override;
|
||||||
void RecalculateSize();
|
void RecalculateSize();
|
||||||
|
|
||||||
bool ticking;
|
bool ticking;
|
||||||
|
Loading…
Reference in New Issue
Block a user