diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-05-24 22:27:27 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-05-24 22:29:39 +0900 |
commit | 06dde54187547d9a6aa16abdbf15336918057683 (patch) | |
tree | b08e0987b1ddb90c022d621cbf87bb2eabaeaef2 /connectivity | |
parent | 4469eb2068fd6f2429823c550295f70ee2f79be7 (diff) |
catch by const reference
Change-Id: I7fda9e06f5beeab4fdfeb1475cda7719ab230073
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/postgresql/pq_xtables.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_xtables.cxx b/connectivity/source/drivers/postgresql/pq_xtables.cxx index 44b1e18f3892..afc1477a8603 100644 --- a/connectivity/source/drivers/postgresql/pq_xtables.cxx +++ b/connectivity/source/drivers/postgresql/pq_xtables.cxx @@ -180,7 +180,7 @@ void Tables::refresh() } m_name2index.swap( map ); } - catch ( com::sun::star::sdbc::SQLException & e ) + catch ( const com::sun::star::sdbc::SQLException & e ) { throw RuntimeException( e.Message , e.Context ); } |