diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-30 13:45:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-30 13:45:52 +0200 |
commit | be3e09a2f7effada123c6a75201eb5a0029481c2 (patch) | |
tree | 6e150dc1930db3c578a0f9b5ebcc87a612b2883b /vcl/inc/unx/gtk/gtkinst.hxx | |
parent | 336b62080bd06000e5ac3c7687b34bac2afc79a9 (diff) |
loplugin:passstuffbyref
Change-Id: If5c3c92eb2828348cda165d72147d7a570af59f8
Diffstat (limited to 'vcl/inc/unx/gtk/gtkinst.hxx')
-rw-r--r-- | vcl/inc/unx/gtk/gtkinst.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/unx/gtk/gtkinst.hxx b/vcl/inc/unx/gtk/gtkinst.hxx index 5218eb4686f3..86002fa7bf25 100644 --- a/vcl/inc/unx/gtk/gtkinst.hxx +++ b/vcl/inc/unx/gtk/gtkinst.hxx @@ -175,7 +175,7 @@ public: // For LibreOffice internal D&D we provide the Transferable without Gtk // intermediaries as a shortcut, see tdf#100097 for how dbaccess depends on this static GtkDragSource* g_ActiveDragSource; - css::uno::Reference<css::datatransfer::XTransferable> GetTransferrable() const { return m_xTrans; } + css::uno::Reference<css::datatransfer::XTransferable> const & GetTransferrable() const { return m_xTrans; } }; #endif |