diff options
author | maho <maho@FreeBSD.org> | 2004-08-05 05:26:37 +0000 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2004-08-05 05:26:37 +0000 |
commit | 245fe61b4e253d9dda97b7f9e49ca81ef2bafcdf (patch) | |
tree | a4e8e3658527288fa4bb47e8d677ad3f68a8f662 /editors/openoffice.org-1.1-devel/files | |
parent | 34acb6736450bfbe10cd9959060123f4d0f863bc (diff) | |
download | FreeBSD-ports-245fe61b4e253d9dda97b7f9e49ca81ef2bafcdf.zip FreeBSD-ports-245fe61b4e253d9dda97b7f9e49ca81ef2bafcdf.tar.gz |
Fix `file://usr/home/hiromi/OpenOffice.org1.1.2/user/config/soffice.cfg'
an error occured during file opening' bug
http://qa.openoffice.org/issues/show_bug.cgi?id=22253
Reported by: Hiromi Kimura <hiromi@tac.tsukuba.ac.jp>
Vincent Derrien <vincent@ahoup.net>
Diffstat (limited to 'editors/openoffice.org-1.1-devel/files')
-rw-r--r-- | editors/openoffice.org-1.1-devel/files/patch-sfx2+source+config+cfgmgr.cxx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/editors/openoffice.org-1.1-devel/files/patch-sfx2+source+config+cfgmgr.cxx b/editors/openoffice.org-1.1-devel/files/patch-sfx2+source+config+cfgmgr.cxx new file mode 100644 index 0000000..be38de2 --- /dev/null +++ b/editors/openoffice.org-1.1-devel/files/patch-sfx2+source+config+cfgmgr.cxx @@ -0,0 +1,16 @@ +Wired bug? +http://qa.openoffice.org/issues/show_bug.cgi?id=22253 + +--- ../sfx2/source/config/cfgmgr.cxx.org Fri Nov 7 19:11:25 2003 ++++ ../sfx2/source/config/cfgmgr.cxx Fri Nov 7 19:30:26 2003 +@@ -118,6 +118,10 @@ + catch(com::sun::star::ucb::InteractiveAugmentedIOException&) + { + } ++ // PJ: This is a workaround for weird error on FreeBSD (#i22253#) ++ catch(com::sun::star::uno::Exception&) ++ { ++ } + sal_Bool bIsDocument; + if ( (aAny >>= bIsDocument) && bIsDocument ) + return new SotStorage( TRUE, rName, nMode, STORAGE_TRANSACTED ); |