lyx_mirror/development/tools/designer43to42
André Pönitz fe8f68ee32 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
2008-03-10 18:31:14 +00:00

8 lines
195 B
Perl

#!/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;
}