summaryrefslogtreecommitdiff
path: root/io/source/acceptor/acc_pipe.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'io/source/acceptor/acc_pipe.cxx')
-rw-r--r--io/source/acceptor/acc_pipe.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/io/source/acceptor/acc_pipe.cxx b/io/source/acceptor/acc_pipe.cxx
index 6ba5606f86b0..7d4cd93319bf 100644
--- a/io/source/acceptor/acc_pipe.cxx
+++ b/io/source/acceptor/acc_pipe.cxx
@@ -160,7 +160,7 @@ namespace io_acceptor
if( ! m_pipe.is() )
{
OUString error = "io.acceptor: Couldn't setup pipe " + m_sPipeName;
- throw ConnectionSetupException( error, Reference< XInterface > () );
+ throw ConnectionSetupException( error );
}
}
@@ -174,7 +174,7 @@ namespace io_acceptor
if( ! pipe.is() )
{
OUString error = "io.acceptor: pipe already closed" + m_sPipeName;
- throw ConnectionSetupException( error, Reference< XInterface > () );
+ throw ConnectionSetupException( error );
}
PipeConnection *pConn = new PipeConnection( m_sConnectionDescription );
@@ -193,7 +193,7 @@ namespace io_acceptor
else
{
OUString error = "io.acceptor: Couldn't setup pipe " + m_sPipeName;
- throw ConnectionSetupException( error, Reference< XInterface > ());
+ throw ConnectionSetupException( error );
}
}