diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2019-06-06 17:45:24 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2019-06-07 15:42:05 +0200 |
commit | 03d33ba9410433d2072364b3afb9dbd6b19c4d0d (patch) | |
tree | a0513e810856ea6a45fc8eb31b086e857b9a17fd /include/vcl | |
parent | 00dfa6dc890dbbc8140fe613599becb5e4c55486 (diff) |
lok: re-factor getTextSelection.
Change-Id: I2c27c213ee980e19d6020e9599b2b72115e7f28e
Reviewed-on: https://gerrit.libreoffice.org/73626
Tested-by: Jenkins
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/ITiledRenderable.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/vcl/ITiledRenderable.hxx b/include/vcl/ITiledRenderable.hxx index 9ab4f5754d84..e95e2bdf0f61 100644 --- a/include/vcl/ITiledRenderable.hxx +++ b/include/vcl/ITiledRenderable.hxx @@ -17,6 +17,7 @@ #include <vcl/ptrstyle.hxx> #include <vcl/vclptr.hxx> #include <map> +#include <com/sun/star/datatransfer/XTransferable.hpp> namespace com::sun::star::beans { struct PropertyValue; } namespace com::sun::star::datatransfer { namespace clipboard { class XClipboard; } } @@ -142,11 +143,9 @@ public: virtual void setTextSelection(int nType, int nX, int nY) = 0; /** - * Gets the text selection. - * - * @see lok::Document::getTextSelection(). + * Gets the selection as a transferable for later processing */ - virtual OString getTextSelection(const char* pMimeType, OString& rUsedMimeType) = 0; + virtual css::uno::Reference<css::datatransfer::XTransferable> getSelection() = 0; /** * Adjusts the graphic selection. |