summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2023-05-11 15:32:34 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2023-05-11 23:13:47 +0200
commitee584c1be755604e8ea408e04e73f69ecf24d4d1 (patch)
treebfc2aa15bc4344cd68835bdb77c9e4a8256b3fea /src
parentcaaaf17dbaea56eda1b14865c53e890ee7a8a536 (diff)
Follow up on changes in qtbase
Adapt to makeSlotObject rename to makeCallableObject. Change-Id: I5014b13d11747938e33c40cd88606dbce257fd8b Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/tts/qtexttospeech.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tts/qtexttospeech.h b/src/tts/qtexttospeech.h
index 395f094..9a7d588 100644
--- a/src/tts/qtexttospeech.h
+++ b/src/tts/qtexttospeech.h
@@ -105,7 +105,7 @@ public:
Functor &&func)
{
using Prototype = void(*)(QAudioFormat, QByteArray);
- synthesizeImpl(text, QtPrivate::makeSlotObject<Prototype>(std::forward<Functor>(func)), receiver);
+ synthesizeImpl(text, QtPrivate::makeCallableObject<Prototype>(std::forward<Functor>(func)), receiver);
}
// synthesize to a functor or function pointer (without context)