Fixed bug #562835 and a bug in duplication where synopsis would not be copied and linespacing would be set to 0.

This commit is contained in:
JT Smith 2002-05-31 23:22:23 +00:00
parent 622eef1397
commit 64d8f0fdef

View file

@ -65,7 +65,8 @@ sub duplicate {
startAtThisLevel=>$_[0]->get("startAtThisLevel"),
indent=>$_[0]->get("indent"),
bullet=>$_[0]->get("bullet"),
lineSpacing=>$_[0]->get("displaySynopsis"),
lineSpacing=>$_[0]->get("lineSpacing"),
displaySynopsis=>$_[0]->get("displaySynopsis"),
depth=>$_[0]->get("depth")
});
}
@ -81,7 +82,7 @@ sub new {
#-------------------------------------------------------------------
sub set {
$_[0]->SUPER::set($_[1],[qw(startAtThisLevel indent bullet lineSpacing depth)]);
$_[0]->SUPER::set($_[1],[qw(startAtThisLevel displaySynopsis indent bullet lineSpacing depth)]);
}
#-------------------------------------------------------------------