more PascalCase to camelCase conversions
This commit is contained in:
14
src/lyrics.h
14
src/lyrics.h
@@ -38,15 +38,15 @@ class Lyrics : public Screen<NC::Scrollpad>
|
||||
itsScrollBegin(0) { }
|
||||
|
||||
// Screen<NC::Scrollpad> implementation
|
||||
virtual void Resize() OVERRIDE;
|
||||
virtual void SwitchTo() OVERRIDE;
|
||||
virtual void resize() OVERRIDE;
|
||||
virtual void switchTo() OVERRIDE;
|
||||
|
||||
virtual std::wstring Title() OVERRIDE;
|
||||
virtual std::wstring title() OVERRIDE;
|
||||
|
||||
virtual void Update() OVERRIDE;
|
||||
virtual void update() OVERRIDE;
|
||||
|
||||
virtual void EnterPressed() OVERRIDE { }
|
||||
virtual void SpacePressed() OVERRIDE;
|
||||
virtual void enterPressed() OVERRIDE { }
|
||||
virtual void spacePressed() OVERRIDE;
|
||||
|
||||
virtual bool isMergable() OVERRIDE { return true; }
|
||||
virtual bool isTabbable() OVERRIDE { return false; }
|
||||
@@ -64,7 +64,7 @@ class Lyrics : public Screen<NC::Scrollpad>
|
||||
bool ReloadNP;
|
||||
|
||||
protected:
|
||||
virtual void Init() OVERRIDE;
|
||||
virtual void init() OVERRIDE;
|
||||
virtual bool isLockable() OVERRIDE { return false; }
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user