Dekel Tsur <[EMAIL PROTECTED]> writes:
| g++ -DHAVE_CONFIG_H -I. -I. -I../../src -I../../images -I./../ -I../.. -I../..
|-I/usr/X11R6/include -O -fno-rtti -fno-exceptions -ansi -W -Wall -Wno-return-type
|-pedantic -Wp,-MD,.deps/formula.pp -c formula.C -o formula.o
| In file included from formula.C:42:
| ../../src/LyXView.h:38: `SigC' is not a class or namespace
| ../../src/LyXView.h:38: `Object' is not a class or namespace
| ../../src/LyXView.h:38: confused by earlier errors, bailing out
|
| This happens due the use of namespaces in LyXView.h and BufferView_pimpl.h
| (SigC::Object), while my compiler doesn't support namespaces.
What compiler?
(I _really_ dislike bad compilers)
Use
using SigC::Object;
and class LyXView : public Object then
perhaps some ifdef around the using is needed.
Lgb