summaryrefslogtreecommitdiff
path: root/desktop/source
diff options
context:
space:
mode:
authorobo <obo@openoffice.org>2011-03-16 08:29:30 +0100
committerobo <obo@openoffice.org>2011-03-16 08:29:30 +0100
commitf165e5b06c6c97b1f92ac314a66146af02ccb872 (patch)
tree2a8d4bea3c1ab0c210b37638a9b09f49fde85a77 /desktop/source
parentd07e4ca3fedf2c59bc4867ed4dd931dd35149cbb (diff)
parent75daa4905bf769598d4c168d6151f85479020571 (diff)
CWS-TOOLING: integrate CWS debuglevels
Diffstat (limited to 'desktop/source')
-rw-r--r--desktop/source/app/app.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 3b5ed1916f9b..033a87cfaea2 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -633,7 +633,9 @@ throw()
else if( TypeToCopy == +1 ) // Folder
{
osl::Directory aDir( srcUnqPath );
- aDir.open();
+ err = aDir.open();
+ if ( err != osl::FileBase::E_None )
+ return err;
err = osl::Directory::create( dstUnqPath );
osl::FileBase::RC next = err;