aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/textstream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/ApiExtractor/textstream.cpp')
-rw-r--r--sources/shiboken6/ApiExtractor/textstream.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/sources/shiboken6/ApiExtractor/textstream.cpp b/sources/shiboken6/ApiExtractor/textstream.cpp
index 55dc89290..f3b2dd13f 100644
--- a/sources/shiboken6/ApiExtractor/textstream.cpp
+++ b/sources/shiboken6/ApiExtractor/textstream.cpp
@@ -154,6 +154,11 @@ void TextStream::putString(QStringView v)
}
}
+void TextStream::putChar(QChar c)
+{
+ putCharHelper(c);
+}
+
void TextStream::putString(const char *s)
{
const char firstChar = *s;
@@ -169,6 +174,11 @@ void TextStream::putString(const char *s)
}
}
+void TextStream::putChar(char c)
+{
+ putCharHelper(c);
+}
+
void TextStream::putInt(int t)
{
checkIndent(CharClass::Other);