gnash-commit
[Top][All Lists]
Advanced

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

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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog gui/sdl.cpp
Date: Thu, 28 Sep 2006 09:41:27 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/09/28 09:41:27

Modified files:
        .              : ChangeLog 
        gui            : sdl.cpp 

Log message:
        fixed compiler warnings

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.947&r2=1.948
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/sdl.cpp?cvsroot=gnash&r1=1.26&r2=1.27

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.947
retrieving revision 1.948
diff -u -b -r1.947 -r1.948
--- ChangeLog   28 Sep 2006 08:20:31 -0000      1.947
+++ ChangeLog   28 Sep 2006 09:41:27 -0000      1.948
@@ -1,5 +1,6 @@
 2006-09-28 Sandro Santilli  <address@hidden>
 
+       * gui/sdl.cpp: fixed compiler warnings.
        * gui/gtk.cpp, gui/sdl.cpp: moved render handler creation
          from createWindow() to init().
        * gui/gui.h: added doxygen comment about init() function

Index: gui/sdl.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/sdl.cpp,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -b -r1.26 -r1.27
--- gui/sdl.cpp 28 Sep 2006 08:20:31 -0000      1.26
+++ gui/sdl.cpp 28 Sep 2006 09:41:27 -0000      1.27
@@ -90,8 +90,8 @@
 SDLGui::SDLGui(unsigned long xid, float scale, bool loop, unsigned int depth)
  : Gui(xid, scale, loop, depth),
    _timeout(0),
-   _core_trap(true),
-   _func(advance_movie)
+   _func(advance_movie),
+   _core_trap(true)
 {
 
 }
@@ -110,7 +110,7 @@
 }
 
 bool
-SDLGui::run(void *arg)
+SDLGui::run(void* /*arg*/)
 {
        GNASH_REPORT_FUNCTION;
        int x_old = -1;




reply via email to

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