QGIS/scripts/sipdiff
Juergen E. Fischer 52616b6549 vector layer: save old attribute values where available to speedup undo (and rollback) (fixes #9509)
field calculator & app: use wait cursor while calculating and committing or rolling back
2014-02-08 23:28:52 +01:00

13 lines
137 B
Bash
Executable File

#!/bin/bash
for file in $*; do
file=$1
d=${file#*/}
d=${d%/*}
f=${file##*/}
f=${f%.*}
vimdiff src/$d/$f.h python/$d/$f.sip
done