diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-13 16:15:34 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-13 16:15:34 +0100 |
commit | 46d4d4b877b7aace6dde24b534f711f674b8a494 (patch) | |
tree | db3c86ce98866575e795adc6f1e4ad80c86188e5 /writerperfect | |
parent | c36c2e050a22d285c1fc49d6f098bbdde348cdc9 (diff) |
no point in extra initialization
Diffstat (limited to 'writerperfect')
-rw-r--r-- | writerperfect/source/wpdimp/WordPerfectImportFilter.cxx | 2 | ||||
-rw-r--r-- | writerperfect/source/wpgimp/WPGImportFilter.cxx | 2 | ||||
-rw-r--r-- | writerperfect/source/wpsimp/MSWorksImportFilter.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/writerperfect/source/wpdimp/WordPerfectImportFilter.cxx b/writerperfect/source/wpdimp/WordPerfectImportFilter.cxx index c81e324bf131..4c82715b17f2 100644 --- a/writerperfect/source/wpdimp/WordPerfectImportFilter.cxx +++ b/writerperfect/source/wpdimp/WordPerfectImportFilter.cxx @@ -193,7 +193,7 @@ OUString SAL_CALL WordPerfectImportFilter::detect( com::sun::star::uno::Sequence WRITER_DEBUG_MSG(("WordPerfectImportFilter::detect: Got here!\n")); WPDConfidence confidence = WPD_CONFIDENCE_NONE; - OUString sTypeName = OUString( RTL_CONSTASCII_USTRINGPARAM ( "" ) ); + OUString sTypeName; sal_Int32 nLength = Descriptor.getLength(); sal_Int32 location = nLength; OUString sURL; diff --git a/writerperfect/source/wpgimp/WPGImportFilter.cxx b/writerperfect/source/wpgimp/WPGImportFilter.cxx index 6b6df43e1da8..9674e79e136e 100644 --- a/writerperfect/source/wpgimp/WPGImportFilter.cxx +++ b/writerperfect/source/wpgimp/WPGImportFilter.cxx @@ -151,7 +151,7 @@ OUString SAL_CALL WPGImportFilter::detect( com::sun::star::uno::Sequence< Proper #ifdef DEBUG std::cerr << "WPGImportFilter::detect" << std::endl; #endif - OUString sTypeName = OUString( RTL_CONSTASCII_USTRINGPARAM ( "" ) ); + OUString sTypeName; sal_Int32 nLength = Descriptor.getLength(); sal_Int32 location = nLength; const PropertyValue * pValue = Descriptor.getConstArray(); diff --git a/writerperfect/source/wpsimp/MSWorksImportFilter.cxx b/writerperfect/source/wpsimp/MSWorksImportFilter.cxx index dcff9ff5e12e..55bd83d118d7 100644 --- a/writerperfect/source/wpsimp/MSWorksImportFilter.cxx +++ b/writerperfect/source/wpsimp/MSWorksImportFilter.cxx @@ -148,7 +148,7 @@ OUString SAL_CALL MSWorksImportFilter::detect( com::sun::star::uno::Sequence< Pr WRITER_DEBUG_MSG(("MSWorksImportFilter::detect: Got here!\n")); WPSConfidence confidence = WPS_CONFIDENCE_NONE; - OUString sTypeName = OUString( RTL_CONSTASCII_USTRINGPARAM ( "" ) ); + OUString sTypeName; sal_Int32 nLength = Descriptor.getLength(); sal_Int32 location = nLength; OUString sURL; |