summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-30 13:45:52 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-05-30 13:45:52 +0200
commitbe3e09a2f7effada123c6a75201eb5a0029481c2 (patch)
tree6e150dc1930db3c578a0f9b5ebcc87a612b2883b /vcl
parent336b62080bd06000e5ac3c7687b34bac2afc79a9 (diff)
loplugin:passstuffbyref
Change-Id: If5c3c92eb2828348cda165d72147d7a570af59f8
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/unx/gtk/gtkinst.hxx2
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