summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-12-20 09:20:50 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-12-20 09:23:00 +0900
commit44ec9d80aee3f4ec4fc4b5f1b7dfe8b8b0af69f7 (patch)
treec778870ab221bbfcf1389610a229c8a5bea4fae3
parent4cae6fa29a07a238273453cef9d18e4171d430e8 (diff)
Fix typo: Stroage -> Storage
Change-Id: Iff909b3a9cf43122af5d854bd38254b9894f4795
-rw-r--r--dbaccess/source/core/dataaccess/ModelImpl.hxx2
-rw-r--r--dbaccess/source/core/dataaccess/databasedocument.cxx2
-rw-r--r--offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl2
3 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/core/dataaccess/ModelImpl.hxx b/dbaccess/source/core/dataaccess/ModelImpl.hxx
index 02d07656bbce..93e318929c37 100644
--- a/dbaccess/source/core/dataaccess/ModelImpl.hxx
+++ b/dbaccess/source/core/dataaccess/ModelImpl.hxx
@@ -337,7 +337,7 @@ public:
::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage > getOrCreateRootStorage();
inline ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage > getRootStorage() const { return m_xDocumentStorage.getTyped(); }
- inline void resetRootStroage() { impl_switchToStorage_throw( NULL ); }
+ inline void resetRootStorage() { impl_switchToStorage_throw( NULL ); }
/** returns the data source. If it doesn't exist it will be created
*/
diff --git a/dbaccess/source/core/dataaccess/databasedocument.cxx b/dbaccess/source/core/dataaccess/databasedocument.cxx
index 8d9c4b4c6e65..c7b911076351 100644
--- a/dbaccess/source/core/dataaccess/databasedocument.cxx
+++ b/dbaccess/source/core/dataaccess/databasedocument.cxx
@@ -466,7 +466,7 @@ void ODatabaseDocument::impl_reset_nothrow()
{
m_pImpl->clearConnections();
m_pImpl->disposeStorages();
- m_pImpl->resetRootStroage();
+ m_pImpl->resetRootStorage();
clearObjectContainer( m_xForms );
clearObjectContainer( m_xReports );
diff --git a/offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl b/offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl
index c57564d387ca..50d58b5c1946 100644
--- a/offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl
+++ b/offapi/com/sun/star/script/XStorageBasedLibraryContainer.idl
@@ -61,7 +61,7 @@ interface XStorageBasedLibraryContainer
/** stores the libraries to a storage other than the current container storage
<p>Note that the library container is not automatically associated with the
- new root storage. Instead, you need to manually set the RootStroage
+ new root storage. Instead, you need to manually set the RootStorage
attribute afterwards. This separation allows for Save-To as well Save-As
operations.</p>