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: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog gui/gui.cpp
Date: Fri, 02 Nov 2007 18:25:34 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/11/02 18:25:34

Modified files:
        .              : ChangeLog 
        gui            : gui.cpp 

Log message:
                * gui/gui.cpp (getMovieInfo): add info about the current active
                  mouse entity.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4761&r2=1.4762
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gui.cpp?cvsroot=gnash&r1=1.112&r2=1.113

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4761
retrieving revision 1.4762
diff -u -b -r1.4761 -r1.4762
--- ChangeLog   2 Nov 2007 17:50:49 -0000       1.4761
+++ ChangeLog   2 Nov 2007 18:25:33 -0000       1.4762
@@ -1,5 +1,10 @@
 2007-11-02 Sandro Santilli <address@hidden>
 
+       * gui/gui.cpp (getMovieInfo): add info about the current active
+         mouse entity.
+
+2007-11-02 Sandro Santilli <address@hidden>
+
        * server/asobj/Color.cpp: more bug fixes.
        * testsuite/actionscript.all/Color.as: more tests. Most pass
          except a suspicious one about some kind of rounding which is

Index: gui/gui.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/gui.cpp,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -b -r1.112 -r1.113
--- gui/gui.cpp 30 Oct 2007 11:04:56 -0000      1.112
+++ gui/gui.cpp 2 Nov 2007 18:25:34 -0000       1.113
@@ -844,6 +844,9 @@
     ret->insert(ret->begin(), StringPair("_level0 URL", def0->get_url()));
     ret->insert(ret->begin(), StringPair("Stage scripts", 
stage.scriptsDisabled() ? " disabled" : "enabled"));
 
+    character* ch = stage.getActiveEntityUnderPointer();
+    ret->insert(ret->begin(), StringPair("Topmost mouse entity", ch ? 
ch->getTarget() : "NONE" ));
+
     return ret;
 }
 




reply via email to

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