mirror of
https://github.com/clangen/musikcube.git
synced 2025-02-20 18:41:03 +00:00
Some clang compiler warning cleanup.
This commit is contained in:
parent
b8da6430b5
commit
01bc1eae3f
@ -62,9 +62,9 @@ namespace musik {
|
|||||||
|
|
||||||
virtual ~BrowseLayout();
|
virtual ~BrowseLayout();
|
||||||
|
|
||||||
virtual void OnVisibilityChanged(bool visible);
|
virtual void OnVisibilityChanged(bool visible) override;
|
||||||
virtual bool KeyPress(const std::string& key);
|
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;
|
||||||
|
|
||||||
void ScrollTo(const std::string& fieldType, int64_t fieldId);
|
void ScrollTo(const std::string& fieldType, int64_t fieldId);
|
||||||
void SwitchCategory(const std::string& fieldName);
|
void SwitchCategory(const std::string& fieldName);
|
||||||
@ -72,7 +72,7 @@ namespace musik {
|
|||||||
void LoadLastSession();
|
void LoadLastSession();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void OnLayout();
|
virtual void OnLayout() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void InitializeWindows();
|
void InitializeWindows();
|
||||||
|
@ -65,21 +65,21 @@ namespace musik {
|
|||||||
|
|
||||||
virtual ~LibraryLayout();
|
virtual ~LibraryLayout();
|
||||||
|
|
||||||
virtual cursespp::IWindowPtr FocusNext();
|
virtual cursespp::IWindowPtr FocusNext() override;
|
||||||
virtual cursespp::IWindowPtr FocusPrev();
|
virtual cursespp::IWindowPtr FocusPrev() override;
|
||||||
virtual cursespp::IWindowPtr GetFocus();
|
virtual cursespp::IWindowPtr GetFocus() override;
|
||||||
virtual bool SetFocus(cursespp::IWindowPtr window);
|
virtual bool SetFocus(cursespp::IWindowPtr window) override;
|
||||||
virtual void ProcessMessage(musik::core::runtime::IMessage &message);
|
virtual void ProcessMessage(musik::core::runtime::IMessage &message) override;
|
||||||
|
|
||||||
virtual void SetShortcutsWindow(
|
virtual void SetShortcutsWindow(
|
||||||
cursespp::ShortcutsWindow* w);
|
cursespp::ShortcutsWindow* w) override;
|
||||||
|
|
||||||
virtual bool KeyPress(const std::string& key);
|
virtual bool KeyPress(const std::string& key) override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void OnLayout();
|
virtual void OnLayout();
|
||||||
virtual void OnAddedToParent(IWindow* newParent);
|
virtual void OnAddedToParent(IWindow* newParent) override;
|
||||||
virtual void OnRemovedFromParent(IWindow* oldParent);
|
virtual void OnRemovedFromParent(IWindow* oldParent) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void LoadLastSession();
|
void LoadLastSession();
|
||||||
|
@ -70,8 +70,8 @@ namespace cursespp {
|
|||||||
|
|
||||||
size_t GetSelectedIndex();
|
size_t GetSelectedIndex();
|
||||||
|
|
||||||
virtual void Layout();
|
virtual void Layout() override;
|
||||||
virtual bool KeyPress(const std::string& key);
|
virtual bool KeyPress(const std::string& key) override;
|
||||||
|
|
||||||
void RefreshAdapter();
|
void RefreshAdapter();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user