Update QtQuick versions to match Qt 5.10

This commit is contained in:
Joseph Donofry 2021-01-11 22:17:00 -05:00
parent a8877c39f4
commit 74e32dd96b
No known key found for this signature in database
GPG key ID: E8A1D78EF044B0CB
41 changed files with 84 additions and 78 deletions

View file

@ -8,10 +8,16 @@
set -eu
FILES=$(find src -type f -type f \( -iname "*.cpp" -o -iname "*.h" \))
QML_FILES=$(find resources -type f -iname "*.qml")
for f in $FILES
do
clang-format -i "$f"
done;
for f in $QML_FILES
do
qmlformat -i $f
done;
git diff --exit-code