quick shot at designer 4.3 -> 4.2 conversion.

Usage: perl -i designer43to42  <the_ui_file_you_want_to_fix>


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23645 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2008-03-10 18:31:14 +00:00
parent c6fff07103
commit fe8f68ee32

View File

@ -0,0 +1,7 @@
#!/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;
}