diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-12-18 12:08:16 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-12-18 12:08:45 +0000 |
commit | 365baa17faa71bd2a2b9a372d779b0eca21d3a1b (patch) | |
tree | d8fe041d2e4d446f7f095f698e2fa2af762e185d /connectivity | |
parent | 82b34e82c05f9fde6ca6c87fc5808d89492a761f (diff) |
STROAGE->STORAGE
Change-Id: I2c83c87d15f5fdc766a8464a8389e22120eabc52
Diffstat (limited to 'connectivity')
4 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/firebird/Connection.cxx b/connectivity/source/drivers/firebird/Connection.cxx index 3f49b1639027..f555e2f4a3a2 100644 --- a/connectivity/source/drivers/firebird/Connection.cxx +++ b/connectivity/source/drivers/firebird/Connection.cxx @@ -147,7 +147,7 @@ void Connection::construct(const ::rtl::OUString& url, const Sequence< PropertyV if ( !m_xEmbeddedStorage.is() ) { ::connectivity::SharedResources aResources; - const OUString sMessage = aResources.getResourceString(STR_NO_STROAGE); + const OUString sMessage = aResources.getResourceString(STR_NO_STORAGE); ::dbtools::throwGenericSQLException(sMessage ,*this); } diff --git a/connectivity/source/drivers/hsqldb/HDriver.cxx b/connectivity/source/drivers/hsqldb/HDriver.cxx index 3e2fd0d53c6c..9734d6a8b0b3 100644 --- a/connectivity/source/drivers/hsqldb/HDriver.cxx +++ b/connectivity/source/drivers/hsqldb/HDriver.cxx @@ -202,7 +202,7 @@ namespace connectivity if ( !xStorage.is() || sURL.isEmpty() ) { ::connectivity::SharedResources aResources; - const OUString sMessage = aResources.getResourceString(STR_NO_STROAGE); + const OUString sMessage = aResources.getResourceString(STR_NO_STORAGE); ::dbtools::throwGenericSQLException(sMessage ,*this); } diff --git a/connectivity/source/inc/resource/hsqldb_res.hrc b/connectivity/source/inc/resource/hsqldb_res.hrc index 4c58619029cf..0ae55112278f 100644 --- a/connectivity/source/inc/resource/hsqldb_res.hrc +++ b/connectivity/source/inc/resource/hsqldb_res.hrc @@ -27,7 +27,7 @@ // = the hsqldb driver's resource strings // ============================================================================ -#define STR_NO_STROAGE ( STR_HSQLDB_BASE + 0 ) +#define STR_NO_STORAGE ( STR_HSQLDB_BASE + 0 ) #define STR_INVALID_FILE_URL ( STR_HSQLDB_BASE + 1 ) #define STR_NO_TABLE_CONTAINER ( STR_HSQLDB_BASE + 2 ) #define STR_NO_TABLE_EDITOR_DIALOG ( STR_HSQLDB_BASE + 3 ) diff --git a/connectivity/source/resource/conn_shared_res.src b/connectivity/source/resource/conn_shared_res.src index b98a560df7e4..693025e82ed5 100644 --- a/connectivity/source/resource/conn_shared_res.src +++ b/connectivity/source/resource/conn_shared_res.src @@ -591,7 +591,7 @@ String STR_NO_MAC_OS_FOUND }; // hsqldb -String STR_NO_STROAGE +String STR_NO_STORAGE { Text [ en-US ] = "The connection can not be established. No storage or URL was given."; }; |