lyx_mirror/development/tools/designer43to42

8 lines
195 B
Plaintext
Raw Normal View History

#!/usr/bin/perl -w
while (<>) {
s/property name=\"(top|left|right|bottom)Margin\"/property name=\"margin\"/;
s/property name=\"(horizont|vertic)Spacing\"/property name=\"spacing\"/;
print;
}