diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2019-08-02 13:58:48 -0400 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2019-08-02 14:00:30 -0400 |
commit | 6a3c5b418437ae928553530b938f4b7b3e5ea9e0 (patch) | |
tree | 3d3f44c3d60d0803a5085530705da5f0e8c2d27b | |
parent | e5e26b83e722bc49727c434ea5c775a97f737566 (diff) |
clipboard: elide string constructor.
Change-Id: I18c01e77e0ddf4b86f2f5ba610509555160f96c3
-rw-r--r-- | desktop/source/lib/lokclipboard.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/lokclipboard.hxx b/desktop/source/lib/lokclipboard.hxx index 6c0509265db4..7da5f3ef3900 100644 --- a/desktop/source/lib/lokclipboard.hxx +++ b/desktop/source/lib/lokclipboard.hxx @@ -54,7 +54,7 @@ public: const css::uno::Reference<css::datatransfer::XTransferable>& xTransferable, const css::uno::Reference<css::datatransfer::clipboard::XClipboardOwner>& xClipboardOwner) override; - OUString SAL_CALL getName() override { return OUString("CLIPBOARD"); } + OUString SAL_CALL getName() override { return "CLIPBOARD"; } // XClipboardEx sal_Int8 SAL_CALL getRenderingCapabilities() override { return 0; } |