[PATCH 02/15] Remove useless const qualifiers on return
From: qolyester@green-communications.fr
This commit is contained in:
parent
59fc6e9e46
commit
fcae4df485
6 changed files with 6 additions and 6 deletions
|
@ -143,7 +143,7 @@ public:
|
|||
|
||||
void set_property(const std::string &name, Variant &value);
|
||||
|
||||
virtual IntrospectedInterface *const introspect() const
|
||||
virtual IntrospectedInterface * introspect() const
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ public:
|
|||
|
||||
protected:
|
||||
|
||||
IntrospectedInterface *const introspect() const;
|
||||
IntrospectedInterface * introspect() const;
|
||||
};
|
||||
|
||||
class DXXAPI IntrospectableProxy : public InterfaceProxy
|
||||
|
|
|
@ -82,7 +82,7 @@ protected:
|
|||
virtual void on_set_property(InterfaceAdaptor &/*interface*/, const std::string &/*property*/, const Variant &/*value*/)
|
||||
{}
|
||||
|
||||
IntrospectedInterface *const introspect() const;
|
||||
IntrospectedInterface * introspect() const;
|
||||
};
|
||||
|
||||
class DXXAPI PropertiesProxy : public InterfaceProxy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue