summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2020-03-24 09:12:07 +0200
committerTor Lillqvist <tml@collabora.com>2020-03-24 12:15:38 +0100
commitf08eeaa79fccbcc816f3ce604bea5375d5dcfc71 (patch)
tree085977a915bb2c2cd909a8940eaf51b70a6a0950 /desktop
parent77763a9d8181899d30705d99e7ce293d96e77b57 (diff)
Simplify the LibreOfficeKit mobile phone and tablet API
There is not need to ever change the kind of device a view is for, so why bother with the bool parameter to setMobilePhone() and setTablet(). Also, make sure just either of them is called, at most once, for a view. Change-Id: I9ac872f0ab4772e4a7c40c49f62b32fa7b1e47f6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90969 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/lib/init.cxx15
1 files changed, 2 insertions, 13 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 95762d537e1c..4a4a10efaa65 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -3623,25 +3623,14 @@ static void doc_postUnoCommand(LibreOfficeKitDocument* pThis, const char* pComma
if (nView < 0)
return;
- // Set/unset mobile phone view for LOK
if (gImpl && (aCommand == ".uno:LOKSetMobile" || aCommand == ".uno:LOKSetMobilePhone"))
{
- comphelper::LibreOfficeKit::setMobilePhone(nView, true);
- return;
- }
- else if (gImpl && (aCommand == ".uno:LOKUnSetMobile" || aCommand == ".uno:LOKUnSetMobilePhone"))
- {
- comphelper::LibreOfficeKit::setMobilePhone(nView, false);
+ comphelper::LibreOfficeKit::setMobilePhone(nView);
return;
}
else if (gImpl && aCommand == ".uno:LOKSetTablet")
{
- comphelper::LibreOfficeKit::setTablet(nView, true);
- return;
- }
- else if (gImpl && aCommand == ".uno:LOKUnSetTablet")
- {
- comphelper::LibreOfficeKit::setTablet(nView, false);
+ comphelper::LibreOfficeKit::setTablet(nView);
return;
}
else if (gImpl && aCommand == ".uno:ToggleOrientation")