diff options
Diffstat (limited to 'shell/source/cmdmail/cmdmailsuppl.cxx')
-rw-r--r-- | shell/source/cmdmail/cmdmailsuppl.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shell/source/cmdmail/cmdmailsuppl.cxx b/shell/source/cmdmail/cmdmailsuppl.cxx index 4ee28eaf96b7..8d6a35be198b 100644 --- a/shell/source/cmdmail/cmdmailsuppl.cxx +++ b/shell/source/cmdmail/cmdmailsuppl.cxx @@ -94,7 +94,7 @@ Reference< XSimpleMailClient > SAL_CALL CmdMailSuppl::querySimpleMailClient( ) Reference< XSimpleMailMessage > SAL_CALL CmdMailSuppl::createSimpleMailMessage( ) - throw (::com::sun::star::uno::RuntimeException, std::exception) + throw (css::uno::RuntimeException, std::exception) { return Reference< XSimpleMailMessage >( new CmdMailMsg( ) ); } @@ -149,13 +149,13 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM { if ( ! xSimpleMailMessage.is() ) { - throw ::com::sun::star::lang::IllegalArgumentException( "No message specified" , + throw css::lang::IllegalArgumentException( "No message specified" , static_cast < XSimpleMailClient * > (this), 1 ); } if( ! m_xConfigurationProvider.is() ) { - throw ::com::sun::star::uno::Exception( "Can not access configuration" , + throw css::uno::Exception( "Can not access configuration" , static_cast < XSimpleMailClient * > (this) ); } @@ -166,7 +166,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM OUString aProgram; if ( FileBase::E_None != FileBase::getSystemPathFromFileURL(aProgramURL, aProgram)) { - throw ::com::sun::star::uno::Exception("Cound not convert executable path", + throw css::uno::Exception("Cound not convert executable path", static_cast < XSimpleMailClient * > (this)); } @@ -298,7 +298,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM FILE * f = popen(cmd.getStr(), "w"); if (f == 0 || pclose(f) != 0) { - throw ::com::sun::star::uno::Exception("No mail client configured", + throw css::uno::Exception("No mail client configured", static_cast < XSimpleMailClient * > (this) ); } } |