Converted the instances of const built in types being returned from methods
and passed as paramters into straight forward non const built in types, i.e. const bool foogbar(const int) becomes bool foobar(int).
This commit is contained in:
@@ -48,7 +48,7 @@ class SG_EXPORT DrawPixels : public Drawable
|
||||
|
||||
void getSubImageDimensions(unsigned int& offsetX,unsigned int& offsetY,unsigned int& width,unsigned int& height) const;
|
||||
|
||||
const bool getUseSubImage() const { return _useSubImage; }
|
||||
bool getUseSubImage() const { return _useSubImage; }
|
||||
|
||||
|
||||
virtual void drawImmediateMode(State& state);
|
||||
@@ -60,7 +60,7 @@ class SG_EXPORT DrawPixels : public Drawable
|
||||
|
||||
virtual ~DrawPixels();
|
||||
|
||||
virtual const bool computeBound() const;
|
||||
virtual bool computeBound() const;
|
||||
|
||||
Vec3 _position;
|
||||
ref_ptr<Image> _image;
|
||||
|
||||
Reference in New Issue
Block a user