gnash-commit
[Top][All Lists]
Advanced

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

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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog gui/Player.cpp gui/gui.h
Date: Fri, 02 May 2008 14:53:43 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/05/02 14:53:43

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

Log message:
        have dump-gnash really use the the DUMP gui.
        
        NOTE: dump-gui is currently unusable as it requires a -D switch which
              is forbidden earlier in the process... bwy is likely in the 
              best position for this (don't bail out on unknown switches, as 
              GUIs might process them later)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6475&r2=1.6476
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/Player.cpp?cvsroot=gnash&r1=1.103&r2=1.104
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gui.h?cvsroot=gnash&r1=1.91&r2=1.92

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6475
retrieving revision 1.6476
diff -u -b -r1.6475 -r1.6476
--- ChangeLog   2 May 2008 14:46:47 -0000       1.6475
+++ ChangeLog   2 May 2008 14:53:42 -0000       1.6476
@@ -1,5 +1,10 @@
 2008-05-02 Sandro Santilli <address@hidden>
 
+       * gui/Player.cpp, gui/gui.h: have dump-gnash really use the
+         the DUMP gui.
+
+2008-05-02 Sandro Santilli <address@hidden>
+
        * testsuite/server/ClassSizes.cpp: print sizeof line_style
          and fill_style.
 

Index: gui/Player.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/Player.cpp,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -b -r1.103 -r1.104
--- gui/Player.cpp      23 Apr 2008 14:55:27 -0000      1.103
+++ gui/Player.cpp      2 May 2008 14:53:42 -0000       1.104
@@ -619,6 +619,10 @@
     return createFBGui(_windowID, _scale, _doLoop, _bitDepth);
 #endif
 
+#ifdef GUI_DUMP
+    return createDumpGui(_windowID, _scale, _doLoop, _bitDepth);
+#endif
+
     return std::auto_ptr<Gui>(new NullGui(_doLoop));
 }
 

Index: gui/gui.h
===================================================================
RCS file: /sources/gnash/gnash/gui/gui.h,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -b -r1.91 -r1.92
--- gui/gui.h   27 Apr 2008 09:46:39 -0000      1.91
+++ gui/gui.h   2 May 2008 14:53:42 -0000       1.92
@@ -498,6 +498,7 @@
 std::auto_ptr<Gui> createFBGui(unsigned long xid, float scale, bool loop, 
unsigned int depth);
 std::auto_ptr<Gui> createAQUAGui(unsigned long xid, float scale, bool loop, 
unsigned int depth);
 std::auto_ptr<Gui> createRISCOSGui(unsigned long xid, float scale, bool loop, 
unsigned int depth);
+std::auto_ptr<Gui> createDumpGui(unsigned long xid, float scale, bool loop, 
unsigned int depth);
 
  
 } // end of gnash namespace




reply via email to

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