more PascalCase to camelCase conversions

This commit is contained in:
Andrzej Rybczak
2012-09-13 19:23:33 +02:00
parent 8e6d9a97e3
commit dd7665bb7d
43 changed files with 567 additions and 567 deletions

View File

@@ -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: