[Libreoffice-commits] core.git: dbaccess/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sun May 12 07:03:05 UTC 2019
dbaccess/source/ui/uno/copytablewizard.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 699b2bd8309502d75a49917d3cda2aebf5c05067
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Wed May 8 10:13:24 2019 +0000
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sun May 12 09:02:03 2019 +0200
Fix typo
Change-Id: Ic575e060a6f4d19213182acc32e4e9e6374f2ae2
Reviewed-on: https://gerrit.libreoffice.org/72178
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/dbaccess/source/ui/uno/copytablewizard.cxx b/dbaccess/source/ui/uno/copytablewizard.cxx
index 65dd8bbe6346..a5dcd743208b 100644
--- a/dbaccess/source/ui/uno/copytablewizard.cxx
+++ b/dbaccess/source/ui/uno/copytablewizard.cxx
@@ -1108,11 +1108,11 @@ void CopyTableWizard::impl_copyRows_throw( const Reference< XResultSet >& _rxSou
sal_Int32 nCount = xMeta->getColumnCount();
std::vector< sal_Int32 > aSourceColTypes;
aSourceColTypes.reserve( nCount + 1 );
- aSourceColTypes.push_back( -1 ); // just to avoid a every time i-1 call
+ aSourceColTypes.push_back( -1 ); // just to avoid an every time i-1 call
std::vector< sal_Int32 > aSourcePrec;
aSourcePrec.reserve( nCount + 1 );
- aSourcePrec.push_back( -1 ); // just to avoid a every time i-1 call
+ aSourcePrec.push_back( -1 ); // just to avoid an every time i-1 call
for ( sal_Int32 k=1; k <= nCount; ++k )
{
More information about the Libreoffice-commits
mailing list