gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r11695: Fix pythonmod build.


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r11695: Fix pythonmod build.
Date: Tue, 15 Dec 2009 07:36:43 +0100
User-agent: Bazaar (2.0.2)

------------------------------------------------------------
revno: 11695
committer: Benjamin Wolsey <address@hidden>
branch nick: trunk
timestamp: Tue 2009-12-15 07:36:43 +0100
message:
  Fix pythonmod build.
modified:
  gui/pythonmod/gnash-view.cpp
=== modified file 'gui/pythonmod/gnash-view.cpp'
--- a/gui/pythonmod/gnash-view.cpp      2009-11-16 13:51:04 +0000
+++ b/gui/pythonmod/gnash-view.cpp      2009-12-15 06:36:43 +0000
@@ -68,7 +68,7 @@
     /// (currently: of the Gui).
     std::auto_ptr<gnash::RunResources> run_info;
 
-    std::auto_ptr<gnash::movie_definition> movie_definition;
+    boost::intrusive_ptr<gnash::movie_definition> movie_definition;
     gnash::Movie* movie;
     std::auto_ptr<gnash::movie_root> stage;
     std::auto_ptr<gnash::SystemClock> system_clock;
@@ -459,8 +459,8 @@
     }
 
     // Load the actual movie.
-    view->movie_definition.reset(gnash::MovieFactory::makeMovie(url,
-            *view->run_info, url.str().c_str(), false));
+    view->movie_definition = gnash::MovieFactory::makeMovie(url,
+            *view->run_info, url.str().c_str(), false);
 
     g_return_if_fail(view->movie_definition.get() != NULL);
 


reply via email to

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