You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by hd...@apache.org on 2013/08/22 10:46:45 UTC

svn commit: r1516387 - /openoffice/branches/rejuvenate01/main/desktop/source/migration/wizard.cxx

Author: hdu
Date: Thu Aug 22 08:46:45 2013
New Revision: 1516387

URL: http://svn.apache.org/r1516387
Log:
#i123068# replace implicit conversion in migration/wizard

Modified:
    openoffice/branches/rejuvenate01/main/desktop/source/migration/wizard.cxx

Modified: openoffice/branches/rejuvenate01/main/desktop/source/migration/wizard.cxx
URL: http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/desktop/source/migration/wizard.cxx?rev=1516387&r1=1516386&r2=1516387&view=diff
==============================================================================
--- openoffice/branches/rejuvenate01/main/desktop/source/migration/wizard.cxx (original)
+++ openoffice/branches/rejuvenate01/main/desktop/source/migration/wizard.cxx Thu Aug 22 08:46:45 2013
@@ -108,10 +108,7 @@ ResMgr *FirstStartWizard::pResMgr = 0;
 ResMgr *FirstStartWizard::GetResManager()
 {
     if ( !FirstStartWizard::pResMgr )
-    {
-        String aMgrName = String::CreateFromAscii( "dkt" );
-        FirstStartWizard::pResMgr = ResMgr::CreateResMgr( OUStringToOString( aMgrName, RTL_TEXTENCODING_UTF8 ));
-    }
+        FirstStartWizard::pResMgr = ResMgr::CreateResMgr( "dkt");
     return FirstStartWizard::pResMgr;
 }