Fix missing const in ServerActiveObject::getStaticData
This fixes #5033 Signed-off-by: Loic Blot <loic.blot@unix-experience.fr>master
parent
8002366097
commit
ee6d8c10ce
|
@ -119,7 +119,7 @@ public:
|
||||||
when it is created (converted from static to active - actually
|
when it is created (converted from static to active - actually
|
||||||
the data is the static form)
|
the data is the static form)
|
||||||
*/
|
*/
|
||||||
virtual void getStaticData(std::string *result)
|
virtual void getStaticData(std::string *result) const
|
||||||
{
|
{
|
||||||
assert(isStaticAllowed());
|
assert(isStaticAllowed());
|
||||||
*result = "";
|
*result = "";
|
||||||
|
|
Loading…
Reference in New Issue