diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 00:17:27 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-03-26 17:52:00 -0600 |
commit | 2ec46b9a6e5ca1beb043da00cf2bb9d34722ec72 (patch) | |
tree | 02cfa2ce2e1976af94c07d7d984eb394ffa4f3c4 /src/gui/skin.h | |
parent | 22974109dd0e9ae2b915cc2c258df1f01a65b729 (diff) | |
download | mana-2ec46b9a6e5ca1beb043da00cf2bb9d34722ec72.tar.gz mana-2ec46b9a6e5ca1beb043da00cf2bb9d34722ec72.tar.bz2 mana-2ec46b9a6e5ca1beb043da00cf2bb9d34722ec72.tar.xz mana-2ec46b9a6e5ca1beb043da00cf2bb9d34722ec72.zip |
Compile warning fixes
Mostly unsigned/signed mismatches and an unused variable.
Diffstat (limited to 'src/gui/skin.h')
-rw-r--r-- | src/gui/skin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/skin.h b/src/gui/skin.h index b7e2c29f..1a603e29 100644 --- a/src/gui/skin.h +++ b/src/gui/skin.h @@ -67,12 +67,12 @@ class Skin /** * Returns the minimum width which can be used with this skin. */ - unsigned int getMinWidth(); + int getMinWidth() const; /** * Returns the minimum height which can be used with this skin. */ - unsigned int getMinHeight(); + int getMinHeight() const; /** * Updates the alpha value of the skin |