summaryrefslogtreecommitdiff
path: root/include/framework
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-06-03 08:58:14 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-06-03 08:58:14 +0200
commit69a3080ae9d1439bd325f55d6c799952b02536e0 (patch)
tree851239df6adfbd30cca337772b427ae1b7692dca /include/framework
parent2d2971090b31776719e83d811c17a01aaf5222c7 (diff)
loplugin:refcounting (RequestFilterSelect_Impl derives from XInterface)
Change-Id: Iabf9b94626b599b4fe799523b3523e18df5203c5
Diffstat (limited to 'include/framework')
-rw-r--r--include/framework/interaction.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/framework/interaction.hxx b/include/framework/interaction.hxx
index f7793d3939ac..6858a044df81 100644
--- a/include/framework/interaction.hxx
+++ b/include/framework/interaction.hxx
@@ -30,11 +30,11 @@
#include <com/sun/star/document/NoSuchFilterRequest.hpp>
#include <com/sun/star/uno/RuntimeException.hpp>
+#include <rtl/ref.hxx>
#include <rtl/ustring.hxx>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include <framework/fwedllapi.h>
-#include <memory>
namespace framework{
@@ -61,7 +61,7 @@ namespace framework{
class RequestFilterSelect_Impl;
class FWE_DLLPUBLIC RequestFilterSelect
{
- std::unique_ptr<RequestFilterSelect_Impl> pImpl;
+ rtl::Reference<RequestFilterSelect_Impl> pImpl;
public:
RequestFilterSelect( const OUString& sURL );