diff options
Diffstat (limited to 'vcl/source/app/salvtables.cxx')
-rw-r--r-- | vcl/source/app/salvtables.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index bd1778308314..ff59e7f4d156 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx @@ -597,7 +597,7 @@ bool SalInstanceWidget::get_extents_relative_to(const Widget& rRelative, int& x, int& height) const { tools::Rectangle aRect(m_xWidget->GetWindowExtentsRelative( - dynamic_cast<const SalInstanceWidget&>(rRelative).getWidget())); + *dynamic_cast<const SalInstanceWidget&>(rRelative).getWidget())); x = aRect.Left(); y = aRect.Top(); width = aRect.GetWidth(); |