]> git.sesse.net Git - kdenlive/blobdiff - reindent.sh
reindent
[kdenlive] / reindent.sh
index 5746abc26b67e071d7e20fe7943f6374bc6d886c..0233d0c38ad9cfcfeb87ef248880f5252068fcaa 100755 (executable)
@@ -1,13 +1,15 @@
 #! /bin/sh
 
-FILES="`find -type f -wholename './src/*.cpp'` `find -type f -wholename './src/*.h'` `find -type f -wholename './renderer/*.cpp'` `find -type f -wholename './renderer/*.h'` `find -type f -wholename './plugins/*.cpp'` `find -type f -wholename './plugins/*.h'`"
+SRCDIRS="src plugins renderer thumbnailer"
 
 if [ $# -gt 0 ]
 then
        FILES=$@
+else
+       FILES=$(find $SRCDIRS -type f -name \*.cpp -o -name \*.h)
 fi
 
-astyle --indent=spaces=4 --brackets=attach \
+astyle --indent=spaces=4 --brackets=linux \
        --indent-labels --unpad=paren \
        --pad=oper --convert-tabs \
        --indent-preprocessor \
@@ -19,7 +21,7 @@ read del
 if [ "x${del}" = "xy" ]
 then
    echo "removing .orig files"
-   find src -iname "*.orig" -exec rm {} ";"
+   find $SRCDIRS -iname "*.orig" -exec rm {} ";"
 else
    echo "Not deleting .orig files"
 fi