diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-12 22:30:21 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-13 10:10:52 +0200 |
commit | e6ea7d9329f29fb864fbd0a5d4a62bd2b9d6f544 (patch) | |
tree | 9a11a24f46bb6f0996850caf57348bfa66ced41e | |
parent | 986b8dbf76b7bcf6e8a184a7576a1cea9e16658c (diff) |
warning C4373: 'chart::ChartModel::setWindow': virtual function overrides...
...'com::sun::star::chart2::X3DChartWindowProvider::setWindow', previous
versions of the compiler did not override when parameters only differed by
const/volatile qualifiers.
X3DChartWindowProvider.hdl defines it as:
virtual void SAL_CALL setWindow( ::sal_uInt64 window )
Change-Id: Ie1b9f940f54df8901c74402a3baf475a0165c5a2
-rw-r--r-- | chart2/inc/ChartModel.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/inc/ChartModel.hxx b/chart2/inc/ChartModel.hxx index 9b3eba310df6..5ec13f1c8fef 100644 --- a/chart2/inc/ChartModel.hxx +++ b/chart2/inc/ChartModel.hxx @@ -581,7 +581,7 @@ public: throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; // X3DChartWindowProvider - virtual void SAL_CALL setWindow( const sal_uInt64 nWindowPtr ) + virtual void SAL_CALL setWindow( sal_uInt64 nWindowPtr ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual void SAL_CALL update() |