diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-24 09:05:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-24 11:02:19 +0200 |
commit | 3e4b0bde6252b80ccc99c8b9ae261d79456ba026 (patch) | |
tree | 2013dd4708bea9d1ae542704ef8bb85704e12573 /include | |
parent | 351202fd9bff1a9cf5b82d6aef5df14a4222a5e9 (diff) |
loplugin:unusedfields some untouched fields
which lead to a whole bunch of dead code in vcl/.../i18n_status.cxx
Change-Id: Id8eeadeb9cbc6107e1a0dac5801ce20b2b9ae6dc
Reviewed-on: https://gerrit.libreoffice.org/40355
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/connectivity/sqlerror.hxx | 2 | ||||
-rw-r--r-- | include/connectivity/sqlparse.hxx | 5 | ||||
-rw-r--r-- | include/vcl/toolbox.hxx | 1 |
3 files changed, 1 insertions, 7 deletions
diff --git a/include/connectivity/sqlerror.hxx b/include/connectivity/sqlerror.hxx index 4c4d6e683c01..026d6d84bbae 100644 --- a/include/connectivity/sqlerror.hxx +++ b/include/connectivity/sqlerror.hxx @@ -78,7 +78,7 @@ namespace connectivity public: - explicit SQLError( const css::uno::Reference< css::uno::XComponentContext > & _rxContext ); + SQLError(); ~SQLError(); /** returns the message associated with a given error condition, after (optionally) replacing diff --git a/include/connectivity/sqlparse.hxx b/include/connectivity/sqlparse.hxx index eb1f7e075df5..7651162b3e30 100644 --- a/include/connectivity/sqlparse.hxx +++ b/include/connectivity/sqlparse.hxx @@ -113,11 +113,6 @@ namespace connectivity { css::lang::Locale aLocale; ::connectivity::SQLError aErrors; - - OSQLParser_Data( const css::uno::Reference< css::uno::XComponentContext >& _rxContext ) - :aErrors( _rxContext ) - { - } }; /** Parser for SQL92 diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx index 28d05b7783ef..09f912ef3ba6 100644 --- a/include/vcl/toolbox.hxx +++ b/include/vcl/toolbox.hxx @@ -103,7 +103,6 @@ private: Idle *mpIdle; tools::Rectangle maUpperRect; tools::Rectangle maLowerRect; - tools::Rectangle maInDockRect; tools::Rectangle maPaintRect; VclPtr<FloatingWindow> mpFloatWin; sal_uInt16 mnKeyModifier; |