gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/movie_root.h server/asob...


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash ChangeLog server/movie_root.h server/asob...
Date: Wed, 23 Apr 2008 16:43:36 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   08/04/23 16:43:36

Modified files:
        .              : ChangeLog 
        server         : movie_root.h 
        server/asobj   : Stage.cpp 

Log message:
                * server/movie_root.h, server/asobj/Stage.cpp: it's exactFit,
                  not exactFill.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6364&r2=1.6365
http://cvs.savannah.gnu.org/viewcvs/gnash/server/movie_root.h?cvsroot=gnash&r1=1.124&r2=1.125
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/Stage.cpp?cvsroot=gnash&r1=1.40&r2=1.41

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6364
retrieving revision 1.6365
diff -u -b -r1.6364 -r1.6365
--- ChangeLog   23 Apr 2008 16:35:53 -0000      1.6364
+++ ChangeLog   23 Apr 2008 16:43:35 -0000      1.6365
@@ -1,5 +1,10 @@
 2008-04-23 Benjamin Wolsey <address@hidden>
 
+       * server/movie_root.h, server/asobj/Stage.cpp: it's exactFit,
+         not exactFill.
+
+2008-04-23 Benjamin Wolsey <address@hidden>
+
        * server/movie_root.{cpp,h}: store scaleMode in movie_root,
          add methods to set and query scale and align mode. Notify
          Player when scaleMode changes. The method isRescalingAllowed

Index: server/movie_root.h
===================================================================
RCS file: /sources/gnash/gnash/server/movie_root.h,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -b -r1.124 -r1.125
--- server/movie_root.h 23 Apr 2008 16:35:54 -0000      1.124
+++ server/movie_root.h 23 Apr 2008 16:43:35 -0000      1.125
@@ -497,7 +497,7 @@
     enum ScaleMode {
         showAll,
                noScale,
-               exactFill,
+        exactFit,
                noBorder
     };
 

Index: server/asobj/Stage.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/Stage.cpp,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -b -r1.40 -r1.41
--- server/asobj/Stage.cpp      23 Apr 2008 16:35:54 -0000      1.40
+++ server/asobj/Stage.cpp      23 Apr 2008 16:43:36 -0000      1.41
@@ -184,7 +184,7 @@
        static const char* modeName[] = {
                "showAll",
                "noScale",
-               "exactFill",
+               "exactFit",
                "noBorder" };
 
     movie_root& m = VM::get().getRoot();
@@ -274,7 +274,7 @@
 
                const std::string& str = fn.arg(0).to_string();
                if ( str == "noScale" ) mode = movie_root::noScale;
-               else if ( str == "exactFill" ) mode = movie_root::exactFill;
+               else if ( str == "exactFit" ) mode = movie_root::exactFit;
                else if ( str == "noBorder" ) mode = movie_root::noBorder;
 
                stage->setScaleMode(mode);




reply via email to

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