diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 12:27:16 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 12:28:52 +0200 |
commit | 381044bf28ef081a0eaf54007ed34af8c309261b (patch) | |
tree | 819d4fc7a876c5e554f12bdcee410a9e455e2c6b | |
parent | 00061554c5df8034e2dc4803bb1433b8eb074f8f (diff) |
i18npool: std::auto_ptr -> std::unique_ptr
Change-Id: I084e8dfd026d59374d92d9b4cb45d63af2aea470
-rw-r--r-- | i18npool/inc/localedata.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/inc/localedata.hxx b/i18npool/inc/localedata.hxx index 8b848221bf65..8bf9ef837cd4 100644 --- a/i18npool/inc/localedata.hxx +++ b/i18npool/inc/localedata.hxx @@ -124,7 +124,7 @@ public: private : friend bool operator ==(const com::sun::star::lang::Locale& l1, const com::sun::star::lang::Locale& l2); - ::std::auto_ptr< LocaleDataLookupTableItem > cachedItem; + ::std::unique_ptr< LocaleDataLookupTableItem > cachedItem; oslGenericFunction SAL_CALL getFunctionSymbol( const com::sun::star::lang::Locale& rLocale, const sal_Char* pFunction ) throw( com::sun::star::uno::RuntimeException ); oslGenericFunction SAL_CALL getFunctionSymbolByName( const OUString& localeName, const sal_Char* pFunction ); |