diff options
Diffstat (limited to 'src/size.cpp')
-rw-r--r-- | src/size.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/size.cpp b/src/size.cpp index 848c074..f655919 100644 --- a/src/size.cpp +++ b/src/size.cpp @@ -31,20 +31,20 @@ CompSize::CompSize () : { } -CompSize::CompSize (unsigned int width, unsigned int height) : +CompSize::CompSize (int width, int height) : mWidth (width), mHeight (height) { } void -CompSize::setWidth (unsigned int width) +CompSize::setWidth (int width) { mWidth = width; } void -CompSize::setHeight (unsigned int height) +CompSize::setHeight (int height) { mHeight = height; } |