gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog gui/gui.cpp


From: Bastiaan Jacques
Subject: [Gnash-commit] gnash ChangeLog gui/gui.cpp
Date: Fri, 14 Jul 2006 15:44:15 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Bastiaan Jacques <bjacques>     06/07/14 15:44:14

Modified files:
        .              : ChangeLog 
        gui            : gui.cpp 

Log message:
        Don't ignore the arguments passed to the Gui class constructor.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.495&r2=1.496
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gui.cpp?cvsroot=gnash&r1=1.8&r2=1.9

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.495
retrieving revision 1.496
diff -u -b -r1.495 -r1.496
--- ChangeLog   14 Jul 2006 13:48:18 -0000      1.495
+++ ChangeLog   14 Jul 2006 15:44:14 -0000      1.496
@@ -1,4 +1,9 @@
-2006-07-11 Bastiaan Jacques <address@hidden>
+2006-07-14 Bastiaan Jacques <address@hidden>
+
+       * gui/gui.cpp: Don't ignore the arguments passed to the Gui class
+       constructor.
+
+2006-07-14 Bastiaan Jacques <address@hidden>
 
        * Makefile.am: revert latest change to fix the build.
 

Index: gui/gui.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/gui.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- gui/gui.cpp 1 Jul 2006 23:05:46 -0000       1.8
+++ gui/gui.cpp 14 Jul 2006 15:44:14 -0000      1.9
@@ -71,8 +71,8 @@
 }
 
 Gui::Gui(unsigned long xid, float scale, bool loop, unsigned int depth) :
-    _loop(true),
-    _xid(0),
+    _loop(loop),
+    _xid(xid),
     _width(0),
     _height(0),
     _mouse_x(0),
@@ -80,7 +80,7 @@
     _scale(scale),
     _mouse_buttons(0),
     _xembed(0),
-    _depth(16)
+    _depth(depth)
 #if defined(FIX_I810_LOD_BIAS)
    ,_tex_lod_bias(-1.2f)
 #endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]