gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Bastiaan Jacques
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1768-geec3a88
Date: Tue, 27 Aug 2013 14:13:53 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  eec3a8840b9efa83532d426abe1b4de456217756 (commit)
       via  c2b8c28d4cabbd97ae91b8a2731d5ec8245a45a2 (commit)
      from  0ff0f2717cd220478dab816355966852e954a83a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=eec3a8840b9efa83532d426abe1b4de456217756


commit eec3a8840b9efa83532d426abe1b4de456217756
Author: Bastiaan Jacques <address@hidden>
Date:   Tue Aug 27 16:12:42 2013 +0200

    Remove defunct assignment.

diff --git a/libcore/asobj/Sound_as.cpp b/libcore/asobj/Sound_as.cpp
index ae59c13..ac0bb4e 100644
--- a/libcore/asobj/Sound_as.cpp
+++ b/libcore/asobj/Sound_as.cpp
@@ -1017,8 +1017,6 @@ sound_start(const fn_call& fn)
         secondOffset = toNumber(fn.arg(0), getVM(fn));
 
         if (fn.nargs > 1) {
-            loop = (int) toNumber(fn.arg(1), getVM(fn)) - 1;
-
             // Negative values count as playing once (aka looping 0 times)
             loop = std::max(0, toInt(fn.arg(1), getVM(fn)) - 1);
         }

http://git.savannah.gnu.org/cgit//commit/?id=c2b8c28d4cabbd97ae91b8a2731d5ec8245a45a2


commit c2b8c28d4cabbd97ae91b8a2731d5ec8245a45a2
Author: Bastiaan Jacques <address@hidden>
Date:   Tue Aug 13 18:22:30 2013 +0200

    Hide noncopyable's protected members.

diff --git a/libbase/GnashScopedPtr.h b/libbase/GnashScopedPtr.h
index 86603d6..f5fc813 100644
--- a/libbase/GnashScopedPtr.h
+++ b/libbase/GnashScopedPtr.h
@@ -34,7 +34,7 @@ namespace gnash {
 /// ScopedPtr is similar to C++11's unique_ptr, but the deleter is not part of
 /// the type.
 template <typename T>
-class ScopedPtr : public boost::noncopyable
+class ScopedPtr : private boost::noncopyable
 {
 private:
     typedef boost::function<void(T* x)> DeleterT;

-----------------------------------------------------------------------

Summary of changes:
 libbase/GnashScopedPtr.h   |    2 +-
 libcore/asobj/Sound_as.cpp |    2 --
 2 files changed, 1 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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