summaryrefslogtreecommitdiffstats
path: root/siplib/sip.h
diff options
context:
space:
mode:
Diffstat (limited to 'siplib/sip.h')
-rw-r--r--siplib/sip.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/siplib/sip.h b/siplib/sip.h
index 68622be..ddd3320 100644
--- a/siplib/sip.h
+++ b/siplib/sip.h
@@ -126,8 +126,8 @@ extern "C" {
* Added sip_api_transfer_break().
*
* 3.4 Added qt_find_connection() to the TQt support API.
- * Added sip_api_string_as_char(), sip_api_tqunicode_as_wchar(),
- * sip_api_tqunicode_as_wstring(), sip_api_find_class(),
+ * Added sip_api_string_as_char(), sip_api_unicode_as_wchar(),
+ * sip_api_unicode_as_wstring(), sip_api_find_class(),
* sip_api_find_named_enum() and sip_api_parse_signature().
* Added the 'A', 'w' and 'x' format characters to sip_api_parse_args(),
* sip_api_parse_result(), sip_api_build_result() and
@@ -1355,11 +1355,11 @@ typedef struct _sipAPIDef {
char (*api_string_as_utf8_char)(PyObject *obj);
const char *(*api_string_as_utf8_string)(PyObject **obj);
#if defined(HAVE_WCHAR_H)
- wchar_t (*api_tqunicode_as_wchar)(PyObject *obj);
- wchar_t *(*api_tqunicode_as_wstring)(PyObject *obj);
+ wchar_t (*api_unicode_as_wchar)(PyObject *obj);
+ wchar_t *(*api_unicode_as_wstring)(PyObject *obj);
#else
- int (*api_tqunicode_as_wchar)(PyObject *obj);
- int *(*api_tqunicode_as_wstring)(PyObject *obj);
+ int (*api_unicode_as_wchar)(PyObject *obj);
+ int *(*api_unicode_as_wstring)(PyObject *obj);
#endif
int (*api_deprecated)(const char *classname, const char *method);
void (*api_keep_reference)(PyObject *self, int key, PyObject *obj);