diff options
Diffstat (limited to 'sc/inc/scmod.hxx')
-rw-r--r-- | sc/inc/scmod.hxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sc/inc/scmod.hxx b/sc/inc/scmod.hxx index 76af5ad22d6d..470f6f0ca0a0 100644 --- a/sc/inc/scmod.hxx +++ b/sc/inc/scmod.hxx @@ -2,9 +2,9 @@ * * $RCSfile: scmod.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: nn $ $Date: 2001-05-29 19:31:58 $ + * last change: $Author: nn $ $Date: 2001-10-02 18:26:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -118,6 +118,7 @@ class ScNavipiCfg; class ScFormEditData; class ScTransferObj; class ScDrawTransferObj; +class ScSelectionTransferObj; //================================================================== @@ -154,6 +155,7 @@ class ScModule: public ScModuleDummy, public SfxListener Timer aSpellTimer; ScDragData aDragData; ScClipData aClipData; + ScSelectionTransferObj* pSelTransfer; ScMessagePool* pMessagePool; // globalen InputHandler gibt's nicht mehr, jede View hat einen ScInputHandler* pRefInputHandler; @@ -210,6 +212,10 @@ public: ScDocument* GetClipDoc(); // called from document - should be removed later + // X selection: + ScSelectionTransferObj* GetSelectionTransfer() const { return pSelTransfer; } + void SetSelectionTransfer( ScSelectionTransferObj* pNew ); + void SetWaterCan( BOOL bNew ) { bIsWaterCan = bNew; } BOOL GetIsWaterCan() const { return bIsWaterCan; } |