diff options
author | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2016-04-10 22:25:14 +0300 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2016-04-11 11:57:59 +0000 |
commit | 87e949b68e9931ed5f19ab6ceb8a709ec2d3d6cf (patch) | |
tree | f7517aa46d90958c1634913dc67e71c2cc578d02 /dbaccess/source/ui/misc/WCPage.cxx | |
parent | 654fa8aaed2f959103e3402e2036e9b1e0d734fc (diff) |
tdf#49554 Fix misleading error message
Fix misleading error message about primary key
on first page of table import wizard, and give
additional info about the process by adding
an info label.
Change-Id: I7c511abc512b7ab87321c055057bae4f42e29af1
Reviewed-on: https://gerrit.libreoffice.org/23969
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu>
Diffstat (limited to 'dbaccess/source/ui/misc/WCPage.cxx')
-rw-r--r-- | dbaccess/source/ui/misc/WCPage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/misc/WCPage.cxx b/dbaccess/source/ui/misc/WCPage.cxx index c866e3ec51db..1613036643aa 100644 --- a/dbaccess/source/ui/misc/WCPage.cxx +++ b/dbaccess/source/ui/misc/WCPage.cxx @@ -205,7 +205,7 @@ bool OCopyTable::LeavePage() if ( m_pParent->m_bCreatePrimaryKeyColumn && m_pParent->m_aKeyName != m_pParent->createUniqueName(m_pParent->m_aKeyName) ) { - OUString aInfoString( ModuleRes(STR_WIZ_PKEY_ALREADY_DEFINED) ); + OUString aInfoString( ModuleRes(STR_WIZ_NAME_ALREADY_DEFINED) ); aInfoString += " "; aInfoString += m_pParent->m_aKeyName; m_pParent->showError(aInfoString); |