Update QtQuick versions to match Qt 5.10
This commit is contained in:
parent
a8877c39f4
commit
74e32dd96b
41 changed files with 84 additions and 78 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue