summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/appbas.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-09-08 14:32:18 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-09-08 14:32:18 +0000
commit6270742bee32f23cd3f95af106e95d8395c7775d (patch)
tree4f617771d2726bfc5a7ea7512569888a452e74c5 /sfx2/source/appl/appbas.cxx
parente64effbbbe0ca7dff51a0a8fa0c6aa0e1ea78eb1 (diff)
INTEGRATION: CWS ooo20040704 (1.31.36); FILE MERGED
2004/07/19 20:15:15 svesik 1.31.36.2: RESYNC: (1.31-1.32); FILE MERGED 2004/06/28 14:04:30 waratah 1.31.36.1: #I30812# remove unused variables bracket pragma not defined for gcc
Diffstat (limited to 'sfx2/source/appl/appbas.cxx')
-rw-r--r--sfx2/source/appl/appbas.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/sfx2/source/appl/appbas.cxx b/sfx2/source/appl/appbas.cxx
index 56e2022509..d3ba240710 100644
--- a/sfx2/source/appl/appbas.cxx
+++ b/sfx2/source/appl/appbas.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: appbas.cxx,v $
*
- * $Revision: 1.32 $
+ * $Revision: 1.33 $
*
- * last change: $Author: hjs $ $Date: 2004-06-26 17:40:23 $
+ * last change: $Author: rt $ $Date: 2004-09-08 15:32:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -137,7 +137,9 @@
#include <svtools/useroptions.hxx>
#include <unotools/bootstrap.hxx>
+#ifndef GCC
#pragma hdrstop
+#endif
#include "appuno.hxx"
#include "module.hxx"
@@ -877,7 +879,7 @@ void SfxApplication::PropExec_Impl( SfxRequest &rReq )
#if SUPD<613//MUSTINI
SfxIniManager *pIniMgr = GetIniManager();
#endif
- const SfxItemSet *pArgs = rReq.GetArgs();
+ rReq.GetArgs();
sal_uInt16 nSID = rReq.GetSlot();
switch ( nSID )
{
@@ -1136,7 +1138,7 @@ void SfxApplication::PlayMacro_Impl( SfxRequest &rReq, StarBASIC *pBasic )
rReq.ReleaseArgs();
// Statement ausf"uhren
- SbxVariable* pRet = pBasic->Execute( aStatement );
+ pBasic->Execute( aStatement );
bOK = 0 == SbxBase::GetError();
SbxBase::ResetError();
}