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

@@ -37,15 +37,15 @@ class Lastfm : public Screen<NC::Scrollpad>
Lastfm() : isReadyToTake(0), isDownloadInProgress(0) { }
// Screen<NC::Scrollpad>
virtual void SwitchTo() OVERRIDE;
virtual void Resize() OVERRIDE;
virtual void switchTo() OVERRIDE;
virtual void resize() 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; }
@@ -57,7 +57,7 @@ class Lastfm : public Screen<NC::Scrollpad>
bool SetArtistInfoArgs(const std::string &artist, const std::string &lang = "");
protected:
virtual void Init() OVERRIDE;
virtual void init() OVERRIDE;
virtual bool isLockable() OVERRIDE { return false; }
private: