David Einstein wrote: > If I compile xpcom objects, the spellchecker for instance, on linux, > they do not work with the mozilla.org builds. I get an > undefined symbol: __pure_virtual error. This suggests to me that there > is some name mangling problem. Am I > 1) Using the wrong compiler? (gcc 2.96 20000731) > 2) Using the wrong compile flags. > 3) Not sacrificing small (or large) furry animals to Xul? >
That generally means that you haven't implemented one of the methods required by the interface. Either that or you have a method = 0; in your implementation header file. --Chris
