Reorder member initializers to avoid compiler warning.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7747 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-09-15 10:03:17 +00:00
parent ba14956f03
commit f0f7507197
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-09-15 Angus Leeming <leeming@lyx.org>
* bufferparams.C (BufferParams): reorder member initializers to avoid
compiler warning.
2003-09-15 Alfredo Braunstein <abraunst@libero.it>
* CutAndPaste.C (pasteSelection): remove an outdated #warning

View File

@ -80,12 +80,12 @@ BufferParams::Impl::Impl()
BufferParams::BufferParams()
: pimpl_(new Impl),
// Initialize textclass to point to article. if `first' is
: // Initialize textclass to point to article. if `first' is
// true in the returned pair, then `second' is the textclass
// number; if it is false, second is 0. In both cases, second
// is what we want.
textclass(textclasslist.NumberOfClass("article").second)
textclass(textclasslist.NumberOfClass("article").second),
pimpl_(new Impl)
{
paragraph_separation = PARSEP_INDENT;
quotes_language = InsetQuotes::EnglishQ;