summaryrefslogtreecommitdiffstats
path: root/svx/source/dialog/sendreportunx.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-06-30 14:42:07 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-06-30 14:42:07 +0000
commit3ff8cd4f5fb3fb54edf72c9d0e24c37204c9471e (patch)
tree3e202f00f4605acf32d0bf7f197cb70fcf99aea9 /svx/source/dialog/sendreportunx.cxx
parentINTEGRATION: CWS hub01 (1.30.46); FILE MERGED (diff)
downloadcore-3ff8cd4f5fb3fb54edf72c9d0e24c37204c9471e.tar.gz
core-3ff8cd4f5fb3fb54edf72c9d0e24c37204c9471e.zip
INTEGRATION: CWS hub01 (1.5.630); FILE MERGED
2008/06/18 20:44:50 thb 1.5.630.2: RESYNC: (1.5-1.7); FILE MERGED 2008/01/16 18:09:01 hub 1.5.630.1: Issue number: 85274 Submitted by: hub Reviewed by: hub Fix warning from gcc 4.2.1 for empty else- statements.
Diffstat (limited to 'svx/source/dialog/sendreportunx.cxx')
-rw-r--r--svx/source/dialog/sendreportunx.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/svx/source/dialog/sendreportunx.cxx b/svx/source/dialog/sendreportunx.cxx
index bb590bb457e8..05ef1592b4b0 100644
--- a/svx/source/dialog/sendreportunx.cxx
+++ b/svx/source/dialog/sendreportunx.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: sendreportunx.cxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@@ -262,8 +262,10 @@ namespace svx{
ret = system(cmd.makeStringAndClear().getStr());
}
- if ( szBodyFile[0] );
+ if ( szBodyFile[0] )
+ {
unlink( szBodyFile );
+ }
return -1 != ret;
}