INTEGRATION: CWS tune03 (1.5.222); FILE MERGED

2004/07/19 19:10:36 mhu 1.5.222.1: #i29979# Added SW_DLLPUBLIC/PRIVATE (see swdllapi.h) to exported symbols/classes.
This commit is contained in:
Rüdiger Timm 2004-08-23 07:35:26 +00:00
parent 370f37d267
commit 4231cec5e2
2 changed files with 17 additions and 8 deletions

View file

@ -2,9 +2,9 @@
*
* $RCSfile: fmtsrnd.hxx,v $
*
* $Revision: 1.5 $
* $Revision: 1.6 $
*
* last change: $Author: hr $ $Date: 2004-02-02 18:00:07 $
* last change: $Author: rt $ $Date: 2004-08-23 08:35:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -61,6 +61,9 @@
#ifndef _FMTSRND_HXX
#define _FMTSRND_HXX
#ifndef INCLUDED_SWDLLAPI_H
#include "swdllapi.h"
#endif
#ifndef _HINTIDS_HXX
#include <hintids.hxx>
#endif
@ -87,7 +90,7 @@ enum SwSurround {
SURROUND_END
};
class SwFmtSurround: public SfxEnumItem
class SW_DLLPUBLIC SwFmtSurround: public SfxEnumItem
{
BOOL bAnchorOnly :1;
BOOL bContour :1;

View file

@ -2,9 +2,9 @@
*
* $RCSfile: fmturl.hxx,v $
*
* $Revision: 1.5 $
* $Revision: 1.6 $
*
* last change: $Author: hr $ $Date: 2004-02-02 18:00:41 $
* last change: $Author: rt $ $Date: 2004-08-23 08:35:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -61,10 +61,13 @@
#ifndef _FMTURL_HXX
#define _FMTURL_HXX
#ifndef _SFXPOOLITEM_HXX //autogen
#include <svtools/poolitem.hxx>
#endif
#ifndef INCLUDED_SWDLLAPI_H
#include "swdllapi.h"
#endif
#ifndef _HINTIDS_HXX
#include <hintids.hxx>
#endif
@ -77,7 +80,7 @@ class IntlWrapper;
// URL, ServerMap und ClientMap
class SwFmtURL: public SfxPoolItem
class SW_DLLPUBLIC SwFmtURL: public SfxPoolItem
{
String sTargetFrameName; // in diesen Frame soll die URL
String sURL; //Einfache URL
@ -90,8 +93,11 @@ class SwFmtURL: public SfxPoolItem
public:
SwFmtURL();
// @@@ copy construction allowed, but assigment is not? @@@
SwFmtURL( const SwFmtURL& );
~SwFmtURL();
virtual ~SwFmtURL();
// "pure virtual Methoden" vom SfxPoolItem
virtual int operator==( const SfxPoolItem& ) const;