We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6db11d commit 7edaf08Copy full SHA for 7edaf08
demos/rlPlanDemo/MainWindow.cpp
@@ -2173,7 +2173,11 @@ MainWindow::parseCommandLine()
2173
{
2174
QString background = parser.value(backgroundOption);
2175
2176
+#if QT_VERSION >= 0x060400
2177
+ if (!QColor::isValidColorName(background))
2178
+#else
2179
if (!QColor::isValidColor(background))
2180
+#endif
2181
2182
parser.showHelp();
2183
}
extras/wrlview/MainWindow.cpp
@@ -735,7 +735,11 @@ MainWindow::parseCommandLine()
735
736
737
738
739
740
741
742
743
744
745
0 commit comments