summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qfxglobal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/util/qfxglobal.h')
-rw-r--r--src/declarative/util/qfxglobal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/util/qfxglobal.h b/src/declarative/util/qfxglobal.h
index 52cf021..887351d 100644
--- a/src/declarative/util/qfxglobal.h
+++ b/src/declarative/util/qfxglobal.h
@@ -88,10 +88,10 @@ QT_MODULE(Declarative)
static bool name() \
{ \
static enum { Yes, No, Unknown } status = Unknown; \
- if(status == Unknown) { \
+ if (status == Unknown) { \
QByteArray v = qgetenv(#var); \
bool value = !v.isEmpty() && v != "0" && v != "false"; \
- if(value) status = Yes; \
+ if (value) status = Yes; \
else status = No; \
} \
return status == Yes; \