summaryrefslogtreecommitdiff
path: root/unoidl/source/legacyprovider.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoidl/source/legacyprovider.hxx')
-rw-r--r--unoidl/source/legacyprovider.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/unoidl/source/legacyprovider.hxx b/unoidl/source/legacyprovider.hxx
index bcb300d4b2e8..c3ba6ef7a252 100644
--- a/unoidl/source/legacyprovider.hxx
+++ b/unoidl/source/legacyprovider.hxx
@@ -21,8 +21,7 @@ namespace unoidl { namespace detail {
class LegacyProvider: public Provider {
public:
// throws FileFormatException, NoSuchFileException:
- LegacyProvider(
- rtl::Reference< Manager > const & manager, OUString const & uri);
+ LegacyProvider(Manager & manager, OUString const & uri);
// throws FileFormatException:
virtual rtl::Reference< MapCursor > createRootCursor() const SAL_OVERRIDE;
@@ -34,7 +33,7 @@ public:
private:
virtual ~LegacyProvider() throw ();
- rtl::Reference< Manager > manager_;
+ Manager & manager_;
mutable RegistryKey ucr_;
};