summaryrefslogtreecommitdiff
path: root/sfx2/source/control/request.cxx
diff options
context:
space:
mode:
authorSander Vesik <svesik@openoffice.org>2004-04-21 12:09:46 +0000
committerSander Vesik <svesik@openoffice.org>2004-04-21 12:09:46 +0000
commit555505bb48be53a210aec91469ba682de0de2c80 (patch)
tree4bdee245dbb19693e0f1ed9b20b9d883b8293bfa /sfx2/source/control/request.cxx
parentb8847f30bca22d08f3ca5858b2e6bd8983aa813e (diff)
INTEGRATION: CWS ooo20040329 (1.13.128); FILE MERGED
2004/03/18 10:15:26 waratah 1.13.128.1: :#i1858# alter the order of the definitions to remove some warnings with -Wall Bracket the pragma hdrstop for gcc only to stop another warning
Diffstat (limited to 'sfx2/source/control/request.cxx')
-rw-r--r--sfx2/source/control/request.cxx15
1 files changed, 11 insertions, 4 deletions
diff --git a/sfx2/source/control/request.cxx b/sfx2/source/control/request.cxx
index 3f859acb1ecf..fa7107cefb01 100644
--- a/sfx2/source/control/request.cxx
+++ b/sfx2/source/control/request.cxx
@@ -2,7 +2,7 @@
// class SfxRequest
//
// (C) 1996 - 2000 StarDivision GmbH, Hamburg, Germany
-// $Author: rt $ $Date: 2003-09-19 07:58:55 $ $Revision: 1.13 $
+// $Author: svesik $ $Date: 2004-04-21 13:09:46 $ $Revision: 1.14 $
// $Logfile: T:/sfx2/source/control/request.cxv $ $Workfile: REQUEST.CXX $
//------------------------------------------------------------------*/
@@ -48,7 +48,9 @@
#include <comphelper/processfactory.hxx>
+#ifndef GCC
#pragma hdrstop
+#endif
#include "request.hxx"
#include "dispatch.hxx"
@@ -89,9 +91,14 @@ struct SfxRequest_Impl: public SfxListener
com::sun::star::uno::Reference< com::sun::star::frame::XDispatchRecorder > xRecorder;
SfxRequest_Impl( SfxRequest *pOwner )
- : pAnti( pOwner), bCancelled(FALSE),
- nCallMode( SFX_CALLMODE_SYNCHRON ), nModifier(0),
- pPool(0), pInternalArgs( 0 ), bAllowRecording( FALSE ), pViewFrame(0)
+ : pAnti( pOwner)
+ , pPool(0)
+ , nModifier(0)
+ , bCancelled(FALSE)
+ , nCallMode( SFX_CALLMODE_SYNCHRON )
+ , pInternalArgs( 0 )
+ , bAllowRecording( FALSE )
+ , pViewFrame(0)
{}
~SfxRequest_Impl() { delete pInternalArgs; }