gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog gui/NullGui.h gui/Player.cpp


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog gui/NullGui.h gui/Player.cpp
Date: Tue, 03 Oct 2006 16:34:43 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/10/03 16:34:43

Modified files:
        .              : ChangeLog 
        gui            : NullGui.h Player.cpp 

Log message:
                * gui/NullGui.h: changed constructor to take do_loop arg.
                * gui/Player.cpp: propagate the do_loop setting to the NullGui
                  (gnash -r0 -1 works now)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1021&r2=1.1022
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/NullGui.h?cvsroot=gnash&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/Player.cpp?cvsroot=gnash&r1=1.14&r2=1.15

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1021
retrieving revision 1.1022
diff -u -b -r1.1021 -r1.1022
--- ChangeLog   3 Oct 2006 16:22:57 -0000       1.1021
+++ ChangeLog   3 Oct 2006 16:34:43 -0000       1.1022
@@ -1,5 +1,11 @@
 2006-10-03 Sandro Santilli  <address@hidden>
 
+       * gui/NullGui.h: changed constructor to take do_loop arg.
+       * gui/Player.cpp: propagate the do_loop setting to the NullGui
+         (gnash -r0 -1 works now)
+
+2006-10-03 Sandro Santilli  <address@hidden>
+
        * server/asobj/Global.cpp (as_global_assetpropflags):
          removed complain about ASSetProfFlag not implemented
          for a NULL property argument (seems actually implemented)

Index: gui/NullGui.h
===================================================================
RCS file: /sources/gnash/gnash/gui/NullGui.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- gui/NullGui.h       14 Sep 2006 23:54:22 -0000      1.3
+++ gui/NullGui.h       3 Oct 2006 16:34:43 -0000       1.4
@@ -53,7 +53,11 @@
 
 public: 
 
-       NullGui() {}
+       NullGui(bool do_loop)
+               :
+               Gui(0,0,do_loop,0)
+       {}
+
        ~NullGui() {}
        void setCallback(unsigned int interval)
        {

Index: gui/Player.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/Player.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- gui/Player.cpp      2 Oct 2006 17:14:41 -0000       1.14
+++ gui/Player.cpp      3 Oct 2006 16:34:43 -0000       1.15
@@ -209,7 +209,7 @@
        }
        else
        {
-               _gui.reset(new NullGui);
+               _gui.reset(new NullGui(do_loop));
        }
 }
 




reply via email to

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