]> git.sesse.net Git - kdenlive/blobdiff - reindent.sh
Fix slot for project proxy params not correctly defined
[kdenlive] / reindent.sh
index 0061a716eeff876e743ea42ac5619d4117d9341b..5d6708de1ad270b86e05b89dd704912389b42756 100755 (executable)
@@ -1,6 +1,7 @@
 #! /bin/sh
 
-SRCDIRS="src plugins renderer thumbnailer"
+WRKDIR=$(dirname $0)
+SRCDIRS="$WRKDIR/src $WRKDIR/plugins $WRKDIR/renderer $WRKDIR/thumbnailer"
 
 if [ $# -gt 0 ]
 then
@@ -9,7 +10,7 @@ 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 \
@@ -21,7 +22,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