summaryrefslogtreecommitdiff
path: root/sw/inc/swcrsr.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-08-23 07:38:56 +0000
committerRüdiger Timm <rt@openoffice.org>2004-08-23 07:38:56 +0000
commita539027a1c05c6c2d231af37774f1b561fca169c (patch)
treec6dd5f6b38e616b72bc51e2aa789b217ac1a6561 /sw/inc/swcrsr.hxx
parentcc7416c38e811daf546651221d14f6ac59466afb (diff)
INTEGRATION: CWS tune03 (1.11.150); FILE MERGED
2004/07/19 19:10:41 mhu 1.11.150.1: #i29979# Added SW_DLLPUBLIC/PRIVATE (see swdllapi.h) to exported symbols/classes.
Diffstat (limited to 'sw/inc/swcrsr.hxx')
-rw-r--r--sw/inc/swcrsr.hxx15
1 files changed, 12 insertions, 3 deletions
diff --git a/sw/inc/swcrsr.hxx b/sw/inc/swcrsr.hxx
index bcf2a3716e25..6120a7b9af28 100644
--- a/sw/inc/swcrsr.hxx
+++ b/sw/inc/swcrsr.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: swcrsr.hxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: obo $ $Date: 2004-08-11 15:39:22 $
+ * last change: $Author: rt $ $Date: 2004-08-23 08:38:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -126,10 +126,19 @@ protected:
const _SwCursor_SavePos* GetSavePos() const { return pSavePos; }
public:
+ // single argument ctors shall be explicit.
SwCursor( const SwPosition &rPos, SwPaM* pRing = 0 );
- SwCursor( SwCursor& );
virtual ~SwCursor();
+ // @@@ semantic: no copy ctor.
+ SwCursor( SwCursor& rCpy);
+private:
+ // forbidden and not implemented.
+ SwCursor( const SwCursor& );
+ // @@@ used e.g. in core/frmedt/fetab.cxx @@@
+ // SwCursor & operator= ( const SwCursor& );
+public:
+
virtual SwCursor* Create( SwPaM* pRing = 0 ) const;
virtual operator SwShellCrsr* ();