summaryrefslogtreecommitdiff
path: root/vcl/source/app
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/app')
-rw-r--r--vcl/source/app/svapp.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index 535af17dfb87..e7d88fe41394 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1222,12 +1222,6 @@ unsigned int Application::GetScreenCount()
return pSys ? pSys->GetDisplayScreenCount() : 0;
}
-bool Application::IsUnifiedDisplay()
-{
- SalSystem* pSys = ImplGetSalSystem();
- return pSys == nullptr || pSys->IsUnifiedDisplay();
-}
-
unsigned int Application::GetDisplayBuiltInScreen()
{
SalSystem* pSys = ImplGetSalSystem();
@@ -1285,9 +1279,6 @@ tools::Long calcDistSquare( const Point& i_rPoint, const tools::Rectangle& i_rRe
unsigned int Application::GetBestScreen( const tools::Rectangle& i_rRect )
{
- if( !IsUnifiedDisplay() )
- return GetDisplayBuiltInScreen();
-
const unsigned int nScreens = GetScreenCount();
unsigned int nBestMatchScreen = 0;
unsigned long nOverlap = 0;