summaryrefslogtreecommitdiff
path: root/vcl/qt5
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-06-14 06:32:16 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-06-15 07:21:17 +0200
commit5a00e1e518d2e65fe7ac066a1dd2e42972ccfd82 (patch)
tree7caac6279a215c448cdec82cd935537149fe6305 /vcl/qt5
parent3cb3b9c415f695db1740c57c99945ea73902ba36 (diff)
Fix typo
Change-Id: I16f502fd3365f8db330c4228e44924c03ef227c1 Reviewed-on: https://gerrit.libreoffice.org/74077 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/qt5')
-rw-r--r--vcl/qt5/Qt5Clipboard.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qt5/Qt5Clipboard.cxx b/vcl/qt5/Qt5Clipboard.cxx
index 8db5dd2ce97c..4b948ae3be17 100644
--- a/vcl/qt5/Qt5Clipboard.cxx
+++ b/vcl/qt5/Qt5Clipboard.cxx
@@ -31,7 +31,7 @@ Qt5Clipboard::Qt5Clipboard(const OUString& aModeString, const QClipboard::Mode a
, m_aClipboardMode(aMode)
{
assert(isSupported(m_aClipboardMode));
- // DirectConnection guarantess the changed slot runs in the same thread as the QClipboard
+ // DirectConnection guarantees the changed slot runs in the same thread as the QClipboard
connect(QApplication::clipboard(), &QClipboard::changed, this, &Qt5Clipboard::handleChanged,
Qt::DirectConnection);
}