diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 |
commit | 479f5f799523bffbcc83dff581a2299c047c6fff (patch) | |
tree | 186aae707ed02aac6c7cab2fb14e97f72aca5e36 /python/sip/siplib/qtlib.c | |
parent | f1dbff6145c98324ff82e34448b7483727e8ace4 (diff) | |
download | tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.tar.gz tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1157645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'python/sip/siplib/qtlib.c')
-rw-r--r-- | python/sip/siplib/qtlib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/sip/siplib/qtlib.c b/python/sip/siplib/qtlib.c index da7637f1..f3ba4301 100644 --- a/python/sip/siplib/qtlib.c +++ b/python/sip/siplib/qtlib.c @@ -278,7 +278,7 @@ sipSignature *sip_api_parse_signature(const char *sig) case 8: if (strncmp(dp, "unsigned", 8) == 0) sat = uint_sat; - else if (strncmp(dp, "QVariant", 8) == 0) + else if (strncmp(dp, "TQVariant", 8) == 0) { if (indir == 0) { @@ -1153,7 +1153,7 @@ static int saveSlot(sipSlot *sp, PyObject *rxObj, const char *slot) * because they are generated on the fly and we can't take a * reference as that may keep the instance (ie. self) alive. * We therefore treat it as if the user had specified the slot - * at "obj, SLOT('meth()')" rather than "obj.meth" (see below). + * at "obj, TQT_SLOT('meth()')" rather than "obj.meth" (see below). */ const char *meth; @@ -1200,7 +1200,7 @@ static int saveSlot(sipSlot *sp, PyObject *rxObj, const char *slot) { /* * The user has decided to connect a Python signal to a Qt slot and - * specified the slot as "obj, SLOT('meth()')" rather than "obj.meth". + * specified the slot as "obj, TQT_SLOT('meth()')" rather than "obj.meth". */ char *tail; |