summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/widgets/graphicsview/qgraphicsanchorlayout_p.cpp2
-rw-r--r--src/widgets/styles/qmacstyle_mac.mm8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/widgets/graphicsview/qgraphicsanchorlayout_p.cpp b/src/widgets/graphicsview/qgraphicsanchorlayout_p.cpp
index 3b61f5f49f..e88ef92b82 100644
--- a/src/widgets/graphicsview/qgraphicsanchorlayout_p.cpp
+++ b/src/widgets/graphicsview/qgraphicsanchorlayout_p.cpp
@@ -2113,7 +2113,7 @@ void QGraphicsAnchorLayoutPrivate::calculateGraphs(
lastCalculationUsedSimplex[orientation] = false;
#endif
- static bool simplificationEnabled = qgetenv("QT_ANCHORLAYOUT_NO_SIMPLIFICATION").isEmpty();
+ static bool simplificationEnabled = qEnvironmentVariableIsEmpty("QT_ANCHORLAYOUT_NO_SIMPLIFICATION");
// Reset the nominal sizes of each anchor based on the current item sizes
refreshAllSizeHints(orientation);
diff --git a/src/widgets/styles/qmacstyle_mac.mm b/src/widgets/styles/qmacstyle_mac.mm
index ced29c8465..ef4a743324 100644
--- a/src/widgets/styles/qmacstyle_mac.mm
+++ b/src/widgets/styles/qmacstyle_mac.mm
@@ -1064,10 +1064,10 @@ static QAquaWidgetSize qt_aqua_guess_size(const QWidget *widg, QSize large, QSiz
}
#ifndef QT_NO_MAINWINDOW
- if (qobject_cast<QDockWidget *>(widg->window()) || !qgetenv("QWIDGET_ALL_SMALL").isNull()) {
+ if (qobject_cast<QDockWidget *>(widg->window()) || qEnvironmentVariableIsSet("QWIDGET_ALL_SMALL")) {
//if (small.width() != -1 || small.height() != -1)
return QAquaSizeSmall;
- } else if (!qgetenv("QWIDGET_ALL_MINI").isNull()) {
+ } else if (qEnvironmentVariableIsSet("QWIDGET_ALL_MINI")) {
return QAquaSizeMini;
}
#endif
@@ -1126,9 +1126,9 @@ QAquaWidgetSize QMacStylePrivate::aquaSizeConstrain(const QStyleOption *option,
if (!widg) {
if (insz)
*insz = QSize();
- if (!qgetenv("QWIDGET_ALL_SMALL").isNull())
+ if (qEnvironmentVariableIsSet("QWIDGET_ALL_SMALL"))
return QAquaSizeSmall;
- if (!qgetenv("QWIDGET_ALL_MINI").isNull())
+ if (qEnvironmentVariableIsSet("QWIDGET_ALL_MINI"))
return QAquaSizeMini;
return QAquaSizeUnknown;
}