diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-12 11:38:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-13 09:58:51 +0900 |
commit | 793159b9690c22c00b6dd78ed24f56c620cd0db8 (patch) | |
tree | 27f7cb8d3819879af63967d05771af6326551c27 /superkaramba/src/config_python.cpp | |
parent | 8a349b7e9ea3f9692976c988090294c78ce35d53 (diff) | |
download | tdeutils-793159b9690c22c00b6dd78ed24f56c620cd0db8.tar.gz tdeutils-793159b9690c22c00b6dd78ed24f56c620cd0db8.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 53c180e71c2d6bc90bb777b4bd304d5f235040e3)
Diffstat (limited to 'superkaramba/src/config_python.cpp')
-rw-r--r-- | superkaramba/src/config_python.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/superkaramba/src/config_python.cpp b/superkaramba/src/config_python.cpp index 0b9b34b..1a094eb 100644 --- a/superkaramba/src/config_python.cpp +++ b/superkaramba/src/config_python.cpp @@ -172,7 +172,7 @@ PyObject* py_read_config_entry(PyObject *, PyObject *args) return Py_BuildValue((char*)"l", i); } - if (type == TQSTRING_OBJECT_NAME_STRING) + if (type == "TQString") { return Py_BuildValue((char*)"s", entry.toString().ascii()); } |