summaryrefslogtreecommitdiff
path: root/svtools/source/filter
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/filter')
-rw-r--r--svtools/source/filter/SvFilterOptionsDialog.cxx6
-rw-r--r--svtools/source/filter/exportdialog.cxx34
2 files changed, 20 insertions, 20 deletions
diff --git a/svtools/source/filter/SvFilterOptionsDialog.cxx b/svtools/source/filter/SvFilterOptionsDialog.cxx
index a2e7d8b1d4af..b762c2fcd030 100644
--- a/svtools/source/filter/SvFilterOptionsDialog.cxx
+++ b/svtools/source/filter/SvFilterOptionsDialog.cxx
@@ -142,7 +142,7 @@ uno::Sequence< beans::PropertyValue > SvFilterOptionsDialog::getPropertyValues()
sal_Int32 i, nCount;
for ( i = 0, nCount = maMediaDescriptor.getLength(); i < nCount; i++ )
{
- if ( maMediaDescriptor[ i ].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("FilterData")) )
+ if ( maMediaDescriptor[ i ].Name == "FilterData" )
break;
}
if ( i == nCount )
@@ -164,11 +164,11 @@ void SvFilterOptionsDialog::setPropertyValues( const uno::Sequence< beans::Prope
sal_Int32 i, nCount;
for ( i = 0, nCount = maMediaDescriptor.getLength(); i < nCount; i++ )
{
- if ( maMediaDescriptor[ i ].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("FilterData")) )
+ if ( maMediaDescriptor[ i ].Name == "FilterData" )
{
maMediaDescriptor[ i ].Value >>= maFilterDataSequence;
}
- else if ( maMediaDescriptor[ i ].Name.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("SelectionOnly")) )
+ else if ( maMediaDescriptor[ i ].Name == "SelectionOnly" )
{
maMediaDescriptor[ i ].Value >>= mbExportSelection;
}
diff --git a/svtools/source/filter/exportdialog.cxx b/svtools/source/filter/exportdialog.cxx
index ed197e9018c8..9fc8ecd0eb71 100644
--- a/svtools/source/filter/exportdialog.cxx
+++ b/svtools/source/filter/exportdialog.cxx
@@ -87,39 +87,39 @@ using namespace ::com::sun::star;
static sal_Int16 GetFilterFormat(const rtl::OUString& rExt)
{
sal_Int16 nFormat = FORMAT_UNKNOWN;
- if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("JPG")))
+ if ( rExt == "JPG" )
nFormat = FORMAT_JPG;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("PNG")))
+ else if ( rExt == "PNG" )
nFormat = FORMAT_PNG;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("BMP")))
+ else if ( rExt == "BMP" )
nFormat = FORMAT_BMP;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("GIF")))
+ else if ( rExt == "GIF" )
nFormat = FORMAT_GIF;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("PBM")))
+ else if ( rExt == "PBM" )
nFormat = FORMAT_PBM;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("PGM")))
+ else if ( rExt == "PGM" )
nFormat = FORMAT_PGM;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("PPM")))
+ else if ( rExt == "PPM" )
nFormat = FORMAT_PPM;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("PCT")))
+ else if ( rExt == "PCT" )
nFormat = FORMAT_PCT;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("RAS")))
+ else if ( rExt == "RAS" )
nFormat = FORMAT_RAS;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("TIF")))
+ else if ( rExt == "TIF" )
nFormat = FORMAT_TIF;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("XPM")))
+ else if ( rExt == "XPM" )
nFormat = FORMAT_XPM;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("WMF")))
+ else if ( rExt == "WMF" )
nFormat = FORMAT_WMF;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("EMF")))
+ else if ( rExt == "EMF" )
nFormat = FORMAT_EMF;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("EPS")))
+ else if ( rExt == "EPS" )
nFormat = FORMAT_EPS;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("MET")))
+ else if ( rExt == "MET" )
nFormat = FORMAT_MET;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("SVG")))
+ else if ( rExt == "SVG" )
nFormat = FORMAT_SVG;
- else if (rExt.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("SVM")))
+ else if ( rExt == "SVM" )
nFormat = FORMAT_SVM;
return nFormat;
}