summaryrefslogtreecommitdiff
path: root/sw/source/ui/dbui/dbmgr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/dbui/dbmgr.cxx')
-rw-r--r--sw/source/ui/dbui/dbmgr.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/dbui/dbmgr.cxx b/sw/source/ui/dbui/dbmgr.cxx
index 1e019e37d018..bc8b93b34af2 100644
--- a/sw/source/ui/dbui/dbmgr.cxx
+++ b/sw/source/ui/dbui/dbmgr.cxx
@@ -2561,17 +2561,17 @@ void SwNewDBMgr::InsertText(SwWrtShell& rSh,
uno::Reference< XConnection> xConnection;
for(sal_Int32 nPos = 0; nPos < rProperties.getLength(); nPos++)
{
- if(pValues[nPos].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(cDataSourceName)))
+ if ( pValues[nPos].Name == cDataSourceName )
pValues[nPos].Value >>= sDataSource;
- else if(pValues[nPos].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(cCommand)))
+ else if ( pValues[nPos].Name == cCommand )
pValues[nPos].Value >>= sDataTableOrQuery;
- else if(pValues[nPos].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(cCursor)))
+ else if ( pValues[nPos].Name == cCursor )
pValues[nPos].Value >>= xResSet;
- else if(pValues[nPos].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(cSelection)))
+ else if ( pValues[nPos].Name == cSelection )
pValues[nPos].Value >>= aSelection;
- else if(pValues[nPos].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(cCommandType)))
+ else if ( pValues[nPos].Name == cCommandType )
pValues[nPos].Value >>= nCmdType;
- else if(pValues[nPos].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(cActiveConnection)))
+ else if ( pValues[nPos].Name == cActiveConnection )
pValues[nPos].Value >>= xConnection;
}
if(sDataSource.isEmpty() || sDataTableOrQuery.isEmpty() || !xResSet.is())