diff options
author | Noel Grandin <noel@peralex.com> | 2013-07-19 08:20:14 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2013-07-19 11:18:21 +0000 |
commit | ab5eaec0984d562140a61e1320c39fdb82ec1b3b (patch) | |
tree | 29da024eef37a4e6fb7fa603ba243bc71b4ee449 /vcl/source/app/svapp.cxx | |
parent | 86b8b3b7e0fd384378f76e21ff170c76ee0ab7f5 (diff) |
remove Application::GetWorkAreaPosSizePixel
This internal API has always been problematic because we cannot
support it under the Linux toolkits, where it has in fact always
just returned the size of the screen.
Change-Id: I406bcbca8a4161b4261ef46940823bb07c6ad18b
Reviewed-on: https://gerrit.libreoffice.org/4976
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@suse.com>
Tested-by: Michael Meeks <michael.meeks@suse.com>
Diffstat (limited to 'vcl/source/app/svapp.cxx')
-rw-r--r-- | vcl/source/app/svapp.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx index d8d193d04cb2..8fd30f4f0c7a 100644 --- a/vcl/source/app/svapp.cxx +++ b/vcl/source/app/svapp.cxx @@ -1322,12 +1322,6 @@ Rectangle Application::GetScreenPosSizePixel( unsigned int nScreen ) return pSys ? pSys->GetDisplayScreenPosSizePixel( nScreen ) : Rectangle(); } -Rectangle Application::GetWorkAreaPosSizePixel( unsigned int nScreen ) -{ - SalSystem* pSys = ImplGetSalSystem(); - return pSys ? pSys->GetDisplayScreenWorkAreaPosSizePixel( nScreen ) : Rectangle(); -} - namespace { unsigned long calcDistSquare( const Point& i_rPoint, const Rectangle& i_rRect ) { |