diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-13 15:17:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-14 09:57:33 +0100 |
commit | f85076ca48e27c81cf4ce36f9b09fb55733db4ec (patch) | |
tree | 6e00adaf93aa6b5d5cc6b5087cb58fad880dc3c9 /sal/rtl | |
parent | 0d51eab31fa305a702218203e9683c102cfe83a2 (diff) |
catch by const reference
Diffstat (limited to 'sal/rtl')
-rw-r--r-- | sal/rtl/source/bootstrap.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/rtl/source/bootstrap.cxx b/sal/rtl/source/bootstrap.cxx index ff42be9ec90b..6e3836b08356 100644 --- a/sal/rtl/source/bootstrap.cxx +++ b/sal/rtl/source/bootstrap.cxx @@ -993,7 +993,7 @@ rtl::OUString expandMacros( try { buf.append( rtl::Uri::convertRelToAbs(seg[1], url)); - } catch (rtl::MalformedUriException &) {} + } catch (const rtl::MalformedUriException &) {} } } else { buf.append( |