summaryrefslogtreecommitdiff
path: root/vcl/qt5
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-24 10:47:38 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-24 11:03:58 +0100
commita2f1be46f29dad0923bee8a93ab1aecdbccb332b (patch)
tree0902027d570b4ae6dcc6105392188dc7b229cebc /vcl/qt5
parentaba8e26120a6cabe65d43a3f089ee802cfbbe338 (diff)
sal_Char->char in vcl
Change-Id: I4359b7042f98586e2c9f5529d83d769cdf3d033c Reviewed-on: https://gerrit.libreoffice.org/85775 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/qt5')
-rw-r--r--vcl/qt5/Qt5Transferable.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/qt5/Qt5Transferable.cxx b/vcl/qt5/Qt5Transferable.cxx
index 81a47871f411..65cf98897ac2 100644
--- a/vcl/qt5/Qt5Transferable.cxx
+++ b/vcl/qt5/Qt5Transferable.cxx
@@ -136,8 +136,8 @@ Qt5Transferable::getTransferData(const css::datatransfer::DataFlavor& rFlavor)
if (m_bConvertFromLocale)
{
QByteArray aByteData(m_pMimeData->data(QStringLiteral("text/plain")));
- aString = OUString(reinterpret_cast<const sal_Char*>(aByteData.data()),
- aByteData.size(), osl_getThreadTextEncoding());
+ aString = OUString(reinterpret_cast<const char*>(aByteData.data()), aByteData.size(),
+ osl_getThreadTextEncoding());
}
else
{