mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
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:
parent
ba14956f03
commit
f0f7507197
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user