On Wed, Feb 06, 2008 at 12:49:02AM +0100, Stefan Schimanski wrote: > Hi! > > I was wondering today how complicated it would be to add a completion popup > to mathed. Well, it took me three hours and here it is. Of course here and > there, there are some rough edges and it has to be cleaned up, but it's > easier than I expected.
Looks nice. index 5af1738..ab89328 100644 --- a/src/mathed/MathFactory.h +++ b/src/mathed/MathFactory.h @@ -12,8 +12,14 @@ #ifndef MATH_FACTORY_H #define MATH_FACTORY_H +#include <map> + +#include "MathParser.h" + #include "support/strfwd.h" +using std::map; + No 'using' on file scope in header files... Andre'