Typo fix.

This commit is contained in:
King_DuckZ 2014-07-05 22:46:09 +02:00
parent 32d141e877
commit 0c8e9b2d7c
5 changed files with 8 additions and 11 deletions

View file

@ -42,7 +42,7 @@ namespace cloonel {
virtual void Draw ( void ) const;
private:
SizeNotifiable<regbehaviuors::AutoRegister> m_screenRatio;
SizeNotifiable<regbehaviours::AutoRegister> m_screenRatio;
const std::unique_ptr<Texture> m_texture;
};
} //unnamed namespace

View file

@ -41,7 +41,7 @@ namespace cloonel {
float2 BottomRight ( void ) const { return TopLeft() + m_size; }
private:
SizeNotifiable<regbehaviuors::AutoRegister> m_screenRatio;
SizeNotifiable<regbehaviours::AutoRegister> m_screenRatio;
float2 m_size;
Texture* m_surface;
};

View file

@ -8,7 +8,7 @@ namespace cloonel {
namespace implem {
} //namespace implem
namespace regbehaviuors {
namespace regbehaviours {
///----------------------------------------------------------------------
///----------------------------------------------------------------------
void AutoRegister::Register (SizeNotifiableBase* parNotifiable) {
@ -47,7 +47,7 @@ namespace cloonel {
std::swap(m_registered, parOther.m_registered);
#endif
}
} //namespace regbehaviuors
} //namespace regbehaviours
///--------------------------------------------------------------------------
///--------------------------------------------------------------------------

View file

@ -29,7 +29,7 @@ namespace cloonel {
class SDLMain;
class SizeNotifiableBase;
namespace regbehaviuors {
namespace regbehaviours {
class DontRegister {
public:
enum { SDLMAIN_NEEDED = false };
@ -66,10 +66,7 @@ namespace cloonel {
bool m_registered;
#endif
};
} //namespace regbehaviuors
namespace implem {
} //namespace implem
} //namespace regbehaviours
class SizeNotifiableBase {
protected:

View file

@ -38,8 +38,8 @@ namespace cloonel {
virtual void Draw ( void ) const;
private:
class TileCountNotifiable : public SizeNotifiable<regbehaviuors::AutoRegister> {
typedef SizeNotifiable<regbehaviuors::AutoRegister> BaseClass;
class TileCountNotifiable : public SizeNotifiable<regbehaviours::AutoRegister> {
typedef SizeNotifiable<regbehaviours::AutoRegister> BaseClass;
public:
TileCountNotifiable ( SDLMain* parMain, const ushort2& parTileSize );
virtual ~TileCountNotifiable ( void ) noexcept = default;