desktop/source/lib/lokclipboard.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 78e369cc261fd83f2259a70b2589b928b59090f0 Author: Miklos Vajna <[email protected]> AuthorDate: Wed Sep 11 23:48:25 2019 +0200 Commit: Miklos Vajna <[email protected]> CommitDate: Thu Sep 12 09:34:21 2019 +0200 desktop: mark LOKClipboard as final Otherwise the virtual member function calls in the constructor would be dangerous. Change-Id: I2fece2ca5718deafe0b88a774208c553e630b411 Reviewed-on: https://gerrit.libreoffice.org/78824 Tested-by: Jenkins Reviewed-by: Miklos Vajna <[email protected]> diff --git a/desktop/source/lib/lokclipboard.hxx b/desktop/source/lib/lokclipboard.hxx index 35a72ae40a4a..0c237d822383 100644 --- a/desktop/source/lib/lokclipboard.hxx +++ b/desktop/source/lib/lokclipboard.hxx @@ -22,7 +22,7 @@ using namespace css::uno; /// A clipboard implementation for LibreOfficeKit. -class LOKClipboard +class LOKClipboard final : public cppu::WeakComponentImplHelper<css::datatransfer::clipboard::XSystemClipboard, css::lang::XServiceInfo> { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
