summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-11-08 17:38:34 +0200
committerTor Lillqvist <tml@collabora.com>2018-11-08 17:33:49 +0100
commit237042b8c34f44d78972c8ec01fb3c140a6ce0a6 (patch)
tree85568d8da50cbdcb3101e9678c480fb24db58423 /vcl
parent5d74784f26c20673237261e64e14a52d522e1853 (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>
Diffstat (limited to 'vcl')
-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 e9770392127f..623308d57303 100644
--- a/vcl/headless/svpframe.cxx
+++ b/vcl/headless/svpframe.cxx
@@ -438,8 +438,9 @@ void SvpSalFrame::UpdateSettings( AllSettings& rSettings )
bFreeGraphics = true;
}
rSettings.SetStyleSettings(aStyleSettings);
+#ifndef IOS // For now...
pGraphics->updateSettings(rSettings);
-
+#endif
if (bFreeGraphics)
ReleaseGraphics(pGraphics);
}