aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/dynamicqmetaobject.h
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-05-17 17:37:52 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-05-17 19:54:59 -0300
commitf976c831fd89c09e116465538f0a3888bba543e2 (patch)
tree81a852cd34c390807e19ef8af3e2e1a7e41cb327 /libpyside/dynamicqmetaobject.h
parent367536b2aad4c076141d6075b766c246a102d763 (diff)
Register Signal objects on MetaObject.
Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'libpyside/dynamicqmetaobject.h')
-rw-r--r--libpyside/dynamicqmetaobject.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libpyside/dynamicqmetaobject.h b/libpyside/dynamicqmetaobject.h
index 5da73a521..36981ec42 100644
--- a/libpyside/dynamicqmetaobject.h
+++ b/libpyside/dynamicqmetaobject.h
@@ -52,11 +52,12 @@ class MethodData
{
public:
MethodData(){}
- MethodData(const char *signature, const char *type);
+ MethodData(const char* signature, const char* type);
void clear();
QByteArray signature() const;
QByteArray type() const;
- bool operator==(const MethodData &other) const;
+ bool operator==(const MethodData& other) const;
+ bool operator==(const char* other) const;
private:
QByteArray m_signature;