diff options
-rw-r--r-- | sw/inc/swunohelper.hxx | 8 | ||||
-rw-r--r-- | sw/source/ui/inc/mailmergehelper.hxx | 26 |
2 files changed, 19 insertions, 15 deletions
diff --git a/sw/inc/swunohelper.hxx b/sw/inc/swunohelper.hxx index ddb02c0b77..76af205e4a 100644 --- a/sw/inc/swunohelper.hxx +++ b/sw/inc/swunohelper.hxx @@ -2,9 +2,9 @@ * * $RCSfile: swunohelper.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: rt $ $Date: 2004-09-24 16:13:27 $ + * last change: $Author: rt $ $Date: 2004-09-27 11:45:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -88,7 +88,7 @@ sal_Int32 GetEnumAsInt32( const com::sun::star::uno::Any& rVal ); // methods for UCB actions: // delete the file under this URL -BOOL UCB_DeleteFile( const String& rURL ); +SW_DLLPUBLIC BOOL UCB_DeleteFile( const String& rURL ); // copy/move the file to a new location BOOL UCB_CopyFile( const String& rURL, const String& rNewURL, @@ -98,7 +98,7 @@ BOOL UCB_CopyFile( const String& rURL, const String& rNewURL, SW_DLLPUBLIC BOOL UCB_IsCaseSensitiveFileName( const String& rURL ); // is the URL readonly? -BOOL UCB_IsReadOnlyFileName( const String& rURL ); +SW_DLLPUBLIC BOOL UCB_IsReadOnlyFileName( const String& rURL ); // get a list of files from the folder of the URL // options: pExtension = 0 -> all, else this specific extension diff --git a/sw/source/ui/inc/mailmergehelper.hxx b/sw/source/ui/inc/mailmergehelper.hxx index c134bb3e43..2e22615402 100644 --- a/sw/source/ui/inc/mailmergehelper.hxx +++ b/sw/source/ui/inc/mailmergehelper.hxx @@ -2,9 +2,9 @@ * * $RCSfile: mailmergehelper.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2004-09-20 13:22:36 $ + * last change: $Author: rt $ $Date: 2004-09-27 11:43:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -94,6 +94,10 @@ #ifndef _SV_SCRBAR_HXX #include <vcl/scrbar.hxx> #endif +#ifndef INCLUDED_SWDLLAPI_H +#include "swdllapi.h" +#endif + class SwMailMergeConfigItem; namespace com{ namespace sun{ namespace star{ @@ -109,13 +113,13 @@ namespace com{ namespace sun{ namespace star{ -----------------------------------------------------------------------*/ namespace SwMailMergeHelper { - String CallSaveAsDialog(String& rFilter); - bool CheckMailAddress( const ::rtl::OUString& rMailAddress ); + SW_DLLPUBLIC String CallSaveAsDialog(String& rFilter); + SW_DLLPUBLIC bool CheckMailAddress( const ::rtl::OUString& rMailAddress ); } /* -----------------06.04.2004 10:29----------------- --------------------------------------------------*/ -class SwBoldFixedInfo : public FixedInfo +class SW_DLLPUBLIC SwBoldFixedInfo : public FixedInfo { public: SwBoldFixedInfo(Window* pParent, const ResId& rResId); @@ -132,7 +136,7 @@ namespace com{namespace sun{namespace star{ Preview window used to show the possible selection of address blocks and also the resulting address filled with database data -----------------------------------------------------------------------*/ -class SwAddressPreview : public Window +class SW_DLLPUBLIC SwAddressPreview : public Window { ScrollBar aVScrollBar; SwAddressPreview_Impl* pImpl; @@ -198,7 +202,7 @@ struct SwMergeAddressItem bIsColumn(false), bIsReturn(false) {} }; -class SwAddressIterator +class SW_DLLPUBLIC SwAddressIterator { String sAddress; public: @@ -212,7 +216,7 @@ public: /*-- 21.05.2004 10:31:15--------------------------------------------------- -----------------------------------------------------------------------*/ -class SwAuthenticator : +class SW_DLLPUBLIC SwAuthenticator : public cppu::WeakImplHelper1< ::com::sun::star::mail::XAuthenticator> { ::rtl::OUString m_aUserName; @@ -234,7 +238,7 @@ public: /*-- 25.08.2004 12:48:47--------------------------------------------------- -----------------------------------------------------------------------*/ -class SwConnectionContext : +class SW_DLLPUBLIC SwConnectionContext : public cppu::WeakImplHelper1< ::com::sun::star::uno::XCurrentContext > { ::rtl::OUString m_sMailServer; @@ -259,7 +263,7 @@ public: /*-- 21.05.2004 10:39:20--------------------------------------------------- -----------------------------------------------------------------------*/ -class SwConnectionListener : +class SW_DLLPUBLIC SwConnectionListener : public SwMutexBase, public cppu::WeakComponentImplHelper1< ::com::sun::star::mail::XConnectionListener > { @@ -363,7 +367,7 @@ public: /*-- 21.05.2004 10:17:22--------------------------------------------------- -----------------------------------------------------------------------*/ -::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext> +SW_DLLPUBLIC ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext> getCurrentCmpCtx( ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory> rSrvMgr); |