mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 08:28:25 +00:00
Some more fixes to compiler warnings.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3607 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
58ad553455
commit
77866d9e88
@ -1,3 +1,8 @@
|
||||
2002-02-28 Angus Leeming <a.leeming@ic.ac.uk>
|
||||
|
||||
* insetgraphics.C (c-tors): initialise parent classes explicitly in
|
||||
copy c-tor and initialise member variables in the correct order.
|
||||
|
||||
2002-02-28 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* insettabular.C (localDispatch): clear selection on PgUp/Down.
|
||||
|
@ -155,14 +155,17 @@ string const unique_id()
|
||||
|
||||
|
||||
InsetGraphics::InsetGraphics()
|
||||
: cached_status_(grfx::ErrorUnknown), cache_filled_(false),
|
||||
graphic_label(unique_id())
|
||||
: graphic_label(unique_id()),
|
||||
cached_status_(grfx::ErrorUnknown), cache_filled_(false)
|
||||
|
||||
{}
|
||||
|
||||
|
||||
InsetGraphics::InsetGraphics(InsetGraphics const & ig, bool same_id)
|
||||
: cached_status_(grfx::ErrorUnknown), cache_filled_(false),
|
||||
graphic_label(unique_id())
|
||||
: Inset(ig, same_id),
|
||||
SigC::Object(),
|
||||
graphic_label(unique_id()),
|
||||
cached_status_(grfx::ErrorUnknown), cache_filled_(false)
|
||||
{
|
||||
setParams(ig.params());
|
||||
if (same_id)
|
||||
|
Loading…
Reference in New Issue
Block a user