diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-12-07 08:07:47 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-12-07 08:12:41 +0200 |
commit | b5677f2d962a06f795db18fa264337128664f1fc (patch) | |
tree | a31ef329a6a53990062f008c85899b861bfd2a34 /vcl | |
parent | 9dd8413a61301305d1bafacc5d3511cf3c3129e2 (diff) |
WaE: 'ANDROID' is not defined, evaluates to 0
'ANDROID' (and UNX, WNT, etc) are either defined or not.
Change-Id: Ia71bd8af23439d97ea2ddd12b8d41990651c1881
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/window.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index e559f700e077..2ab189bfb590 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -3940,9 +3940,10 @@ Any Window::GetSystemDataAny() const bool ImplDoTiledRendering() { -#if !HAVE_FEATURE_DESKTOP && !ANDROID +#if !HAVE_FEATURE_DESKTOP && !defined(ANDROID) // We do tiled rendering only for iOS at the moment, actually, but // let's see what happens if we assume it for Android, too. + // (That comment doesn't match what the code does, does it?) return true; #else // We need some way to know globally if this process will use |