summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-28 10:25:22 +0200
committerNoel Grandin <noel@peralex.com>2014-05-29 09:01:40 +0200
commitf0ae48b684e89acd7088c31a8feff5fc03d51105 (patch)
treec2560690a0d7ba016ff832cd1561da5d4532c6d9 /connectivity
parent7e4c6e1ff1961ad7a48cc9c1d9b3668372c6aed8 (diff)
remove unnecessary NULL parameter passed to UNO Exception
.. now that we have a default value for that parameter Change-Id: I54d6b0a0a01ce2f2e5168ada0c427424de0477bc
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/dbase/DTable.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx
index edd1e79c868d..ad6b71a7b48b 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -2298,7 +2298,7 @@ namespace
}
catch(const Exception&)
{
- throw ElementExistException(newName,NULL);
+ throw ElementExistException(newName);
}
}
}