diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-04-01 09:03:00 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-04-06 22:12:49 +0200 |
commit | 59c13c04cc28e0690667c9240cb7508fbc773949 (patch) | |
tree | 9901176ea443911a5c43f4dbe2fe9aa962716ae4 /sw/source/ui/envelp | |
parent | c41b573daa5bb117c853c8b194ec8a700f47d8ba (diff) |
long to sal_Int32 as index for Sequence
Change-Id: I111fe8aaf9b2ce3b6276c51195911520961602e4
Diffstat (limited to 'sw/source/ui/envelp')
-rw-r--r-- | sw/source/ui/envelp/envlop1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/envelp/envlop1.cxx b/sw/source/ui/envelp/envlop1.cxx index e5c03f2e98e5..a316ec1cc21a 100644 --- a/sw/source/ui/envelp/envlop1.cxx +++ b/sw/source/ui/envelp/envlop1.cxx @@ -290,7 +290,7 @@ void SwEnvPage::InitDatabaseBox() Sequence<OUString> aDataNames = SwNewDBMgr::GetExistingDatabaseNames(); const OUString* pDataNames = aDataNames.getConstArray(); - for (long i = 0; i < aDataNames.getLength(); i++) + for (sal_Int32 i = 0; i < aDataNames.getLength(); i++) m_pDatabaseLB->InsertEntry(pDataNames[i]); OUString sDBName = sActDBName.getToken( 0, DB_DELIM ); |