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:
@@ -127,8 +127,7 @@ setDefaults()
|
||||
_useDisplayList=false;
|
||||
}
|
||||
|
||||
const bool Text::
|
||||
computeBound() const
|
||||
bool Text::computeBound() const
|
||||
{
|
||||
if(!_init)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user