gnash-commit
[Top][All Lists]
Advanced

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

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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog gui/kde_glue_agg.cpp
Date: Wed, 19 Sep 2007 06:38:05 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/09/19 06:38:04

Modified files:
        .              : ChangeLog 
        gui            : kde_glue_agg.cpp 

Log message:
                * gui/kde_glue_agg.cpp: fix initialization order warning.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4345&r2=1.4346
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/kde_glue_agg.cpp?cvsroot=gnash&r1=1.5&r2=1.6

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4345
retrieving revision 1.4346
diff -u -b -r1.4345 -r1.4346
--- ChangeLog   19 Sep 2007 06:36:28 -0000      1.4345
+++ ChangeLog   19 Sep 2007 06:38:04 -0000      1.4346
@@ -1,5 +1,6 @@
 2007-09-19 Sandro Santilli <address@hidden>
 
+       * gui/kde_glue_agg.cpp: fix initialization order warning.
        * gui/gui.{cpp,h}: draft an attempt at skipping rendering
          when late of fps timer. It's experimental, and disabled
          by default. Define SKIP_RENDERING_IF_LATE in gui.h to

Index: gui/kde_glue_agg.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/kde_glue_agg.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- gui/kde_glue_agg.cpp        26 Jul 2007 19:41:37 -0000      1.5
+++ gui/kde_glue_agg.cpp        19 Sep 2007 06:38:04 -0000      1.6
@@ -15,7 +15,7 @@
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
-/* $Id: kde_glue_agg.cpp,v 1.5 2007/07/26 19:41:37 strk Exp $ */
+/* $Id: kde_glue_agg.cpp,v 1.6 2007/09/19 06:38:04 strk Exp $ */
 
 #include "kde_glue_agg.h"
 #include "render_handler.h"
@@ -27,9 +27,10 @@
 {
 
 KdeAggGlue::KdeAggGlue()
-: _renderer(NULL),
+:
   _width(0),
-  _height(0)
+  _height(0),
+  _renderer(0)
 {
 }
 




reply via email to

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