On Sat, Oct 20, 2007 at 09:06:45AM -0500, Bo Peng wrote: > > > Modified: lyx-devel/trunk/src/Paragraph.cpp > > > URL: > > > http://www.lyx.org/trac/file/lyx-devel/trunk/src/Paragraph.cpp?rev=21076 > > I am getting (gcc 4.1.2, linux) > > src/Paragraph.cpp:133: error: extra qualification > 'lyx::Paragraph::Private::' on member 'simpleTeXSpecialChar' > > and I really don't understand this code: > > class Paragraph{ > /// Pimpl away stuff > class Private; > } > > class Paragraph::Private > > This looks quite unconventional, if it is correct, to me.
[Working through a lot of older messages...] It's correct C++-wise. In LyX context, the Private class is usually called 'Impl', though ;-) Andre'