summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-22 12:08:47 +0200
committerNoel Grandin <noel@peralex.com>2013-08-22 12:09:29 +0200
commite0233480c674987cd0de301fde57248a7aba523d (patch)
tree12205b4c240a1dc0e196c95e413588299dfe622c /svtools
parentd616f1aacb85dd8e3387ebcb0bcfa938a47b0026 (diff)
equalsIgnoreAsciiCaseAscii -> equalsIgnoreAsciiCase
Change-Id: Ie3adf4cc83c7b2128565eab1a9d4df8beec36c99
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/uno/unoiface.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx
index 855ecb491c16..2ce4aa80164b 100644
--- a/svtools/source/uno/unoiface.cxx
+++ b/svtools/source/uno/unoiface.cxx
@@ -63,7 +63,7 @@ SAL_DLLPUBLIC_EXPORT Window* CreateWindow( VCLXWindow** ppNewComp, const ::com::
{
Window* pWindow = NULL;
OUString aServiceName( pDescriptor->WindowServiceName );
- if ( aServiceName.equalsIgnoreAsciiCaseAscii( "MultiLineEdit" ) )
+ if ( aServiceName.equalsIgnoreAsciiCase( "MultiLineEdit" ) )
{
if ( pParent )
{
@@ -77,7 +77,7 @@ SAL_DLLPUBLIC_EXPORT Window* CreateWindow( VCLXWindow** ppNewComp, const ::com::
return NULL;
}
}
- else if ( aServiceName.equalsIgnoreAsciiCaseAscii( "FileControl" ) )
+ else if ( aServiceName.equalsIgnoreAsciiCase( "FileControl" ) )
{
if ( pParent )
{
@@ -90,22 +90,22 @@ SAL_DLLPUBLIC_EXPORT Window* CreateWindow( VCLXWindow** ppNewComp, const ::com::
return NULL;
}
}
- else if (aServiceName.equalsIgnoreAsciiCaseAscii("FormattedField") )
+ else if (aServiceName.equalsIgnoreAsciiCase("FormattedField") )
{
pWindow = new FormattedField( pParent, nWinBits );
*ppNewComp = new SVTXFormattedField;
}
- else if (aServiceName.equalsIgnoreAsciiCaseAscii("NumericField") )
+ else if (aServiceName.equalsIgnoreAsciiCase("NumericField") )
{
pWindow = new DoubleNumericField( pParent, nWinBits );
*ppNewComp = new SVTXNumericField;
}
- else if (aServiceName.equalsIgnoreAsciiCaseAscii("LongCurrencyField") )
+ else if (aServiceName.equalsIgnoreAsciiCase("LongCurrencyField") )
{
pWindow = new DoubleCurrencyField( pParent, nWinBits );
*ppNewComp = new SVTXCurrencyField;
}
- else if (aServiceName.equalsIgnoreAsciiCaseAscii("datefield") )
+ else if (aServiceName.equalsIgnoreAsciiCase("datefield") )
{
pWindow = new CalendarField( pParent, nWinBits);
static_cast<CalendarField*>(pWindow)->EnableToday();
@@ -114,12 +114,12 @@ SAL_DLLPUBLIC_EXPORT Window* CreateWindow( VCLXWindow** ppNewComp, const ::com::
*ppNewComp = new SVTXDateField;
((VCLXFormattedSpinField*)*ppNewComp)->SetFormatter( (FormatterBase*)(DateField*)pWindow );
}
- else if (aServiceName.equalsIgnoreAsciiCaseAscii("roadmap") )
+ else if (aServiceName.equalsIgnoreAsciiCase("roadmap") )
{
pWindow = new ::svt::ORoadmap( pParent, WB_TABSTOP );
*ppNewComp = new SVTXRoadmap;
}
- else if ( aServiceName.equalsIgnoreAsciiCaseAscii( "ProgressBar" ) )
+ else if ( aServiceName.equalsIgnoreAsciiCase( "ProgressBar" ) )
{
if ( pParent )
{
@@ -132,13 +132,13 @@ SAL_DLLPUBLIC_EXPORT Window* CreateWindow( VCLXWindow** ppNewComp, const ::com::
return NULL;
}
}
- else if ( aServiceName.equalsIgnoreAsciiCaseAscii( "Tree" ) )
+ else if ( aServiceName.equalsIgnoreAsciiCase( "Tree" ) )
{
TreeControlPeer* pPeer = new TreeControlPeer;
*ppNewComp = pPeer;
pWindow = pPeer->createVclControl( pParent, nWinBits );
}
- else if ( aServiceName.equalsIgnoreAsciiCaseAscii( "FixedHyperlink" ) )
+ else if ( aServiceName.equalsIgnoreAsciiCase( "FixedHyperlink" ) )
{
if ( pParent )
{
@@ -151,7 +151,7 @@ SAL_DLLPUBLIC_EXPORT Window* CreateWindow( VCLXWindow** ppNewComp, const ::com::
return NULL;
}
}
- else if ( aServiceName.equalsIgnoreAsciiCaseAscii( "Grid" ) )
+ else if ( aServiceName.equalsIgnoreAsciiCase( "Grid" ) )
{
if ( pParent )
{