diff --git a/src/lib/views/sunlight/include/sTypes.h b/src/lib/views/sunlight/include/sTypes.h index 507c353..da9a44d 100644 --- a/src/lib/views/sunlight/include/sTypes.h +++ b/src/lib/views/sunlight/include/sTypes.h @@ -3,8 +3,9 @@ #include #include -#include +#include #include +#include class sString : public sStyle { public: @@ -42,15 +43,19 @@ uInt32 size; uInt32 width; uInt32 height; - sSize(void) { size = width = height = 0; } - sSize(uInt32 _size) { size = _size; width = height = 0; } - sSize(uInt32, uInt32); - sSize(uInt32, uInt32, uInt32); - virtual ~sSize(void) { }; + sSize(void) { size = width = height = 0; } + sSize(uInt32 _size) { size = _size; width = height = 0; } + sSize(uInt32, uInt32); + sSize(uInt32, uInt32, uInt32); + virtual ~sSize(void) { }; }; // sSize class sPixelFormat : public sStyle, public ogPixelFmt { public: +// sPixelFormat(void); +// sPixelFormat(uInt8, uInt8, uInt8, uInt8, uInt8, +// uInt8, uInt8, uInt8) + virtual ~sPixelFormat(void) { }; }; // sPixelFormat #endif diff --git a/src/lib/views/sunlight/sTypes.cpp b/src/lib/views/sunlight/sTypes.cpp index 20972c7..9bc258f 100644 --- a/src/lib/views/sunlight/sTypes.cpp +++ b/src/lib/views/sunlight/sTypes.cpp @@ -40,3 +40,4 @@ height = _height; return; } // sSize::sSize +