diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-03-22 17:05:42 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-03-22 17:05:42 +0000 |
commit | 18cf2ccd24740facefc006603a5fc77e51f7d2cc (patch) | |
tree | b74c9361571cd7628e466f88f86607bf878acf67 /basic/source/uno | |
parent | 5bac8101407c3c17ae0217f13c9f5f509cb5314b (diff) |
Revert "Replace String with rtl::OUString"
You can't hope to change *some* virtual methods of a hierarchy and
leave others untouched, they all have to be changed together.
This reverts commit 9f46bee92be38f2d59295cabd9f1fdb149708153.
Diffstat (limited to 'basic/source/uno')
-rwxr-xr-x | basic/source/uno/namecont.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/uno/namecont.cxx b/basic/source/uno/namecont.cxx index ceb3a48ff83c..e1e7fd3cf5f6 100755 --- a/basic/source/uno/namecont.cxx +++ b/basic/source/uno/namecont.cxx @@ -448,7 +448,7 @@ sal_Bool SfxLibraryContainer::isModified() throw (RuntimeException) SfxLibrary* pImplLib = getImplLib( aName ); if( pImplLib->isModified() ) { - if ( aName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM("Standard") ) ) + if ( aName.equals( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("Standard") ) ) ) { // this is a workaround that has to be implemented because // empty standard library should stay marked as modified |