summaryrefslogtreecommitdiffstats
path: root/shell/source/win32/simplemail/smplmailmsg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'shell/source/win32/simplemail/smplmailmsg.cxx')
-rw-r--r--shell/source/win32/simplemail/smplmailmsg.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/shell/source/win32/simplemail/smplmailmsg.cxx b/shell/source/win32/simplemail/smplmailmsg.cxx
index 31e837701bba..5d6d46e5390b 100644
--- a/shell/source/win32/simplemail/smplmailmsg.cxx
+++ b/shell/source/win32/simplemail/smplmailmsg.cxx
@@ -22,20 +22,12 @@
#include <osl/file.h>
#include "smplmailmsg.hxx"
-
-// namespace directives
-
-
using com::sun::star::uno::RuntimeException;
using com::sun::star::uno::Sequence;
using com::sun::star::lang::IllegalArgumentException;
using namespace cppu;
-
-// helper functions
-
-
CSmplMailMsg::CSmplMailMsg( )
{
}
@@ -52,84 +44,72 @@ void SAL_CALL CSmplMailMsg::setBody( const ::rtl::OUString& aBody )
return m_aBody;
}
-
void SAL_CALL CSmplMailMsg::setRecipient( const OUString& aRecipient )
throw (RuntimeException)
{
m_aRecipient = aRecipient;
}
-
OUString SAL_CALL CSmplMailMsg::getRecipient( )
throw (RuntimeException)
{
return m_aRecipient;
}
-
void SAL_CALL CSmplMailMsg::setCcRecipient( const Sequence< OUString >& aCcRecipient )
throw (RuntimeException)
{
m_CcRecipients = aCcRecipient;
}
-
Sequence< OUString > SAL_CALL CSmplMailMsg::getCcRecipient( )
throw (RuntimeException)
{
return m_CcRecipients;
}
-
void SAL_CALL CSmplMailMsg::setBccRecipient( const Sequence< OUString >& aBccRecipient )
throw (RuntimeException)
{
m_BccRecipients = aBccRecipient;
}
-
Sequence< OUString > SAL_CALL CSmplMailMsg::getBccRecipient( )
throw (RuntimeException)
{
return m_BccRecipients;
}
-
void SAL_CALL CSmplMailMsg::setOriginator( const OUString& aOriginator )
throw (RuntimeException)
{
m_aOriginator = aOriginator;
}
-
OUString SAL_CALL CSmplMailMsg::getOriginator( )
throw (RuntimeException)
{
return m_aOriginator;
}
-
void SAL_CALL CSmplMailMsg::setSubject( const OUString& aSubject )
throw (RuntimeException)
{
m_aSubject = aSubject;
}
-
OUString SAL_CALL CSmplMailMsg::getSubject( )
throw (RuntimeException)
{
return m_aSubject;
}
-
void SAL_CALL CSmplMailMsg::setAttachement( const Sequence< OUString >& aAttachement )
throw (IllegalArgumentException, RuntimeException)
{
m_Attachements = aAttachement;
}
-
Sequence< OUString > SAL_CALL CSmplMailMsg::getAttachement( )
throw (RuntimeException)
{