summaryrefslogtreecommitdiff
path: root/vcl/headless/svpframe.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-11-08 17:38:34 +0200
committerTor Lillqvist <tml@collabora.com>2018-11-09 23:27:38 +0200
commit2c10ed72c9e4d53064377183b606af22a0e34383 (patch)
treefc31831f3fc4f8d2c32f4bfbcf8af95bf587ed0e /vcl/headless/svpframe.cxx
parentce6f42c50fed9a3749de464684342bbd858c882c (diff)
No updateSettings() in AquaSalGraphics
Just ifdef out the call of it for now. This is a temporary solution, we presumably do want dialogs to be "themed" appropriately for the iOS app. Change-Id: I0b14bd59ecc13037c9ff2a286405a5020081f1d5 Reviewed-on: https://gerrit.libreoffice.org/63112 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com> (cherry picked from commit 237042b8c34f44d78972c8ec01fb3c140a6ce0a6)
Diffstat (limited to 'vcl/headless/svpframe.cxx')
-rw-r--r--vcl/headless/svpframe.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/headless/svpframe.cxx b/vcl/headless/svpframe.cxx
index f159a0cd6f86..4df5328f8cea 100644
--- a/vcl/headless/svpframe.cxx
+++ b/vcl/headless/svpframe.cxx
@@ -440,8 +440,9 @@ void SvpSalFrame::UpdateSettings( AllSettings& rSettings )
bFreeGraphics = true;
}
rSettings.SetStyleSettings(aStyleSettings);
+#ifndef IOS // For now...
pGraphics->updateSettings(rSettings);
-
+#endif
if (bFreeGraphics)
ReleaseGraphics(pGraphics);
}