mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix embarrassing logic mistake
Thanks Richard for pointing at it.
This commit is contained in:
parent
a893712c0e
commit
096afc733b
@ -338,7 +338,7 @@ void extractIt(boost::any const & any_factory,
|
||||
return;
|
||||
|
||||
Factory factory = boost::any_cast<Factory>(any_factory);
|
||||
if (!factory)
|
||||
if (factory)
|
||||
transformer = factory(data);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user