summaryrefslogtreecommitdiff
path: root/desktop/source/app/officeipcthread.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-12-06 00:19:44 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-12-06 00:20:08 +0900
commit877da827a7aab5a7fb6bc3f84c2d5a48cac381ff (patch)
tree1e7ffcfc4020227cd1662cffb8ad894e3398e5a2 /desktop/source/app/officeipcthread.cxx
parentac9f72d9627f979f1e4bd0490578aba1ede577d4 (diff)
catch exception by constant reference
Diffstat (limited to 'desktop/source/app/officeipcthread.cxx')
-rw-r--r--desktop/source/app/officeipcthread.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx
index 6f819aab813d..2b03f5822718 100644
--- a/desktop/source/app/officeipcthread.cxx
+++ b/desktop/source/app/officeipcthread.cxx
@@ -699,7 +699,7 @@ void SAL_CALL OfficeIPCThread::run()
Parser p( aArguments );
aCmdLineArgs.reset( new CommandLineArgs( p ) );
}
- catch ( CommandLineArgs::Supplier::Exception & )
+ catch ( const CommandLineArgs::Supplier::Exception & )
{
#if (OSL_DEBUG_LEVEL > 1) || defined DBG_UTIL
fprintf( stderr, "Error in received command line arguments\n" );