diff options
author | Douglas Mencken <dougmencken@gmail.com> | 2014-08-25 07:16:18 -0400 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-08-26 01:24:08 -0500 |
commit | df1b30925050dc6774b52d4bfabb0fb552930896 (patch) | |
tree | 568b314dbb663d7f87727c277a7ee07747e03aae /dbaccess | |
parent | 310a852e012ecfc10e813bea64438c1a862bb2c0 (diff) |
fix typo: Mesage -> Message
Change-Id: Id101590f915699b6ddd9822cd249a9a46d6e144a
Reviewed-on: https://gerrit.libreoffice.org/11107
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/inc/WCopyTable.hxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/misc/WCopyTable.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/inc/WCopyTable.hxx b/dbaccess/source/ui/inc/WCopyTable.hxx index 02557530cf32..671bdc943e60 100644 --- a/dbaccess/source/ui/inc/WCopyTable.hxx +++ b/dbaccess/source/ui/inc/WCopyTable.hxx @@ -407,7 +407,7 @@ namespace dbaui void showColumnTypeNotSupported(const OUString& _rColumnName); void removeColumnNameFromNameMap(const OUString& _sName); - void showError(const OUString& _sErrorMesage); + void showError(const OUString& _sErrorMessage); void showError(const ::com::sun::star::uno::Any& _aError); }; } diff --git a/dbaccess/source/ui/misc/WCopyTable.cxx b/dbaccess/source/ui/misc/WCopyTable.cxx index 5edbe08e8a51..755d22bbc7c4 100644 --- a/dbaccess/source/ui/misc/WCopyTable.cxx +++ b/dbaccess/source/ui/misc/WCopyTable.cxx @@ -1560,9 +1560,9 @@ void OCopyTableWizard::showColumnTypeNotSupported(const OUString& _rColumnName) showError(sMessage); } -void OCopyTableWizard::showError(const OUString& _sErrorMesage) +void OCopyTableWizard::showError(const OUString& _sErrorMessage) { - SQLExceptionInfo aInfo(_sErrorMesage); + SQLExceptionInfo aInfo(_sErrorMessage); showError(aInfo.get()); } |