remove const from setter

This commit is contained in:
Dane Springmeyer 2011-08-11 22:58:53 +00:00
parent 3b424e3767
commit d5035d0474

View file

@ -198,7 +198,7 @@ public:
return resolution_;
}
inline void set_resolution(unsigned int res) const
inline void set_resolution(unsigned int res)
{
resolution_ = res;
}