summaryrefslogtreecommitdiff
path: root/sw/inc/section.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-08-23 07:38:00 +0000
committerRüdiger Timm <rt@openoffice.org>2004-08-23 07:38:00 +0000
commit2075d1cbb32d74ec249ebb889581dea29f903ed5 (patch)
treed3ca0ad95d7dc3fe01bc3a07afd4b8e6fc78bfa6 /sw/inc/section.hxx
parentcae8d22874f78b7090f49326f4117b801a36686a (diff)
INTEGRATION: CWS tune03 (1.5.744); FILE MERGED
2004/07/19 19:10:40 mhu 1.5.744.1: #i29979# Added SW_DLLPUBLIC/PRIVATE (see swdllapi.h) to exported symbols/classes.
Diffstat (limited to 'sw/inc/section.hxx')
-rw-r--r--sw/inc/section.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/section.hxx b/sw/inc/section.hxx
index 7a174bcc7eee..7db83339334b 100644
--- a/sw/inc/section.hxx
+++ b/sw/inc/section.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: section.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: os $ $Date: 2002-12-05 13:08:00 $
+ * last change: $Author: rt $ $Date: 2004-08-23 08:38:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -116,7 +116,7 @@ enum LinkCreateType
};
-class SwSection : public SwClient
+class SW_DLLPUBLIC SwSection : public SwClient
{
// damit beim Anlegen/Loeschen von Frames das Flag richtig gepflegt wird!
friend class SwSectionNode;
@@ -142,10 +142,10 @@ class SwSection : public SwClient
BOOL bConnectFlag : 1; // Flag: "Verbindung zum Server" vorhanden?
- void _SetHiddenFlag( int bHidden, int bCondition );
- void _SetProtectFlag( int bFlag ) { bProtectFlag = bFlag; }
+ SW_DLLPRIVATE void _SetHiddenFlag( int bHidden, int bCondition );
+ SW_DLLPRIVATE void _SetProtectFlag( int bFlag ) { bProtectFlag = bFlag; }
- int _IsProtect() const;
+ /* SW_DLLPUBLIC */ int _IsProtect() const;
public:
TYPEINFO(); // rtti
@@ -242,16 +242,18 @@ public:
private:
// privater Constructor, weil nie kopiert werden darf !!
SwSection( const SwSection& );
+ // @@@ but copy assignment "SwSection & operator= ( const SwSection& )" is public? @@@
};
enum SectionSort { SORTSECT_NOT, SORTSECT_NAME, SORTSECT_POS };
-class SwSectionFmt : public SwFrmFmt
+class SW_DLLPUBLIC SwSectionFmt : public SwFrmFmt
{
friend class SwDoc;
- SwSection* _GetSection() const;
- void UpdateParent(); // Parent wurde veraendert
+
+ /* SW_DLLPUBLIC */ SwSection* _GetSection() const;
+ SW_DLLPRIVATE void UpdateParent(); // Parent wurde veraendert
protected:
SwSectionFmt( SwSectionFmt* pDrvdFrm, SwDoc *pDoc );
@@ -322,6 +324,4 @@ inline SwSection* SwSectionFmt::GetParentSection() const
}
-#endif
- //_SECTION_HXX
-
+#endif /* _SECTION_HXX */