]> git.lyx.org Git - features.git/blobdiff - src/insets/insetgraphics.C
Some more fixes to compiler warnings.
[features.git] / src / insets / insetgraphics.C
index a9d040a5595bec005589787fd5f86233800715b6..fe4da9b701476a3d02712d535ef524b2cb18e09e 100644 (file)
@@ -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)