diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2013-12-13 15:09:40 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2013-12-13 17:00:07 +0000 |
commit | 59197dea293677b55a6f79a6bcfaaa7ce7c8f97b (patch) | |
tree | be113c9aa3858a5b91bd51d93b867bb2c086ded2 /sfx2/source/appl | |
parent | 984c3b733fe3b118f6e4b855fa8a6396fe194f8e (diff) |
Targetted text updates, with seasonable changes before l10n freeze.
Change-Id: If37ef9f68711da3a0aa9a3ba59b111a8a23421df
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r-- | sfx2/source/appl/appserv.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx index 7fc357a4fbd8..4ba407c030aa 100644 --- a/sfx2/source/appl/appserv.cxx +++ b/sfx2/source/appl/appserv.cxx @@ -194,7 +194,7 @@ namespace } } } -/// Find the correct location of the document (LICENSE.odt, etc.), and return +/// Find the correct location of the document (LICENSE.fodt, etc.), and return /// it in rURL if found. static sal_Bool checkURL( const char *pName, const char *pExt, OUString &rURL ) { @@ -223,9 +223,9 @@ static void showDocument( const char* pBaseName ) args[1].Value <<= sal_True; OUString aURL; - if ( checkURL ( pBaseName, ".odt", aURL ) || - checkURL ( pBaseName, ".html", aURL ) || - checkURL ( pBaseName, "", aURL ) ) { + if ( checkURL ( pBaseName, ".fodt", aURL ) || + checkURL ( pBaseName, ".html", aURL ) || + checkURL ( pBaseName, "", aURL ) ) { xDesktop->loadComponentFromURL( aURL, OUString("_blank"), 0, args ); } } catch (const ::com::sun::star::uno::Exception &) { |