Kaydet (Commit) 4d9e28be authored tarafından Stephan Bergmann's avatar Stephan Bergmann

There appears to be no need to create a copy here

Change-Id: Ibc0694150aff56c8fadf08d61e350933b245db46
üst e700d4f9
......@@ -714,7 +714,7 @@ void SwCreateAddressListDialog::Find(const OUString& rSearch, sal_Int32 nColumn)
{
for(nPos = nStart; nPos < nEnd; ++nPos)
{
std::vector< OUString> aData = m_pCSVData->aDBData[nPos];
std::vector< OUString> const & aData = m_pCSVData->aDBData[nPos];
if(nColumn >=0)
bFound = -1 != aData[(sal_uInt32)nColumn].toAsciiLowerCase().indexOf(sSearch);
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment