diff options
-rw-r--r-- | vcl/qt5/QtBuilder.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qt5/QtBuilder.cxx b/vcl/qt5/QtBuilder.cxx index e47b740fd88f..db8a8f1033f0 100644 --- a/vcl/qt5/QtBuilder.cxx +++ b/vcl/qt5/QtBuilder.cxx @@ -354,7 +354,7 @@ void QtBuilder::setProperties(QObject* pObject, stringmap& rProps) for (auto const & [ rKey, rValue ] : rProps) { if (rKey == u"label") - pLabel->setText(toQString(rValue)); + pLabel->setText(convertAccelerator(rValue)); else if (rKey == u"wrap") pLabel->setWordWrap(toBool(rValue)); } |