diff options
Diffstat (limited to 'sip/tdeui/kkeydialog.sip')
-rw-r--r-- | sip/tdeui/kkeydialog.sip | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sip/tdeui/kkeydialog.sip b/sip/tdeui/kkeydialog.sip index 60e9c28..0f081b6 100644 --- a/sip/tdeui/kkeydialog.sip +++ b/sip/tdeui/kkeydialog.sip @@ -199,8 +199,8 @@ typedef TQDict<int> IntDict; // Get it. - TQDict<int> qdict = *sipCpp; - TQDictIterator<int> it (qdict); + TQDict<int> tqdict = *sipCpp; + TQDictIterator<int> it (tqdict); while (it.current ()) { @@ -227,7 +227,7 @@ typedef TQDict<int> IntDict; if (sipIsErr == NULL) return PyDict_Check(sipPy); - TQDict<int>* qdict = new TQDict<int>; + TQDict<int>* tqdict = new TQDict<int>; PyObject *key, *value; SIP_SSIZE_T pos = 0; @@ -246,18 +246,18 @@ typedef TQDict<int> IntDict; sipReleaseType(a0, sipType_TQString, a0_state); *sipIsErr = 1; - delete qdict; + delete tqdict; return 0; } a1 = (int) PyLong_AS_LONG (value); - qdict->insert (*a0, &a1); + tqdict->insert (*a0, &a1); sipReleaseType(a0, sipType_TQString, a0_state); } - *sipCppPtr = qdict; + *sipCppPtr = tqdict; return 1; %End |