gnash-commit
[Top][All Lists]
Advanced

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

Re: [Gnash-commit] /srv/bzr/gnash/trunk r9751: Can't use ``thingie'' in


From: strk
Subject: Re: [Gnash-commit] /srv/bzr/gnash/trunk r9751: Can't use ``thingie'' in a shell script
Date: Tue, 16 Sep 2008 00:36:40 +0200

On Mon, Sep 15, 2008 at 04:06:16PM -0400, Russell Nelson wrote:
> ------------------------------------------------------------
> revno: 9751
> committer: Russell Nelson <address@hidden>
> branch nick: trunk
> timestamp: Mon 2008-09-15 16:06:16 -0400
> message:
>   Can't use ``thingie'' in a shell script
> modified:
>   configure.ac
>   testsuite/MovieTester.cpp

And what's the invalidatedBounds stuff ?

--strk;

> === modified file 'testsuite/MovieTester.cpp'
> --- a/testsuite/MovieTester.cpp       2008-06-09 13:31:51 +0000
> +++ b/testsuite/MovieTester.cpp       2008-09-15 20:06:16 +0000
> @@ -145,6 +145,7 @@
>          _movie_root->setRootMovie( mi.release() );
>  
>       // ... and render it
> +     std::cout << "invalidatedBounds1" << _invalidatedBounds <<std::endl;
>       render();
>  }
>  
> @@ -179,12 +180,14 @@
>  MovieTester::redraw()
>  {
>       _forceRedraw=true;
> +     std::cout << "invalidatedBounds2" << _invalidatedBounds <<std::endl;
>       render();
>  }
>  
>  void
>  MovieTester::render() 
>  {
> +     std::cout << "invalidatedBounds3" << _invalidatedBounds <<std::endl;
>       // Get invalidated ranges and cache them
>       _invalidatedBounds.setNull();
>  
> @@ -249,6 +252,7 @@
>  
>       _movie_root->advance();
>  
> +     std::cout << "invalidatedBounds4" << _invalidatedBounds <<std::endl;
>       render();
>  
>  }
> @@ -303,7 +307,10 @@
>  {
>       _x = x;
>       _y = y;
> -     if ( _movie_root->notify_mouse_moved(x, y) ) render();
> +     if ( _movie_root->notify_mouse_moved(x, y) ) {
> +             std::cout << "invalidatedBounds5" << _invalidatedBounds 
> <<std::endl;
> +             render();
> +     }
>  }
>  
>  void
> @@ -377,6 +384,7 @@
>  {
>       if ( _movie_root->notify_mouse_clicked(true, 1) )
>       {
> +     std::cout << "invalidatedBounds6" << _invalidatedBounds <<std::endl;
>               render();
>       }
>  }
> @@ -386,6 +394,7 @@
>  {
>       if ( _movie_root->notify_mouse_clicked(false, 1) )
>       {
> +     std::cout << "invalidatedBounds7" << _invalidatedBounds <<std::endl;
>               render();
>       }
>  }
> @@ -397,7 +406,10 @@
>       if ( _movie_root->notify_mouse_clicked(true, 1) ) ++wantRedraw;
>       if ( _movie_root->notify_mouse_clicked(false, 1) ) ++wantRedraw;
>  
> -     if ( wantRedraw ) render();
> +     if ( wantRedraw ) {
> +     std::cout << "invalidatedBounds8" << _invalidatedBounds <<std::endl;
> +             render();
> +     }
>  }
>  
>  void
> @@ -405,6 +417,7 @@
>  {
>       if ( _movie_root->notify_key_event(code, true) )
>       {
> +     std::cout << "invalidatedBounds9" << _invalidatedBounds <<std::endl;
>               render();
>       }
>  }
> @@ -414,6 +427,7 @@
>  {
>       if ( _movie_root->notify_key_event(code, false) )
>       {
> +     std::cout << "invalidatedBounds10" << _invalidatedBounds <<std::endl;
>               render();
>       }
>  }
> @@ -592,6 +606,7 @@
>       _movie_root->setRootMovie(_movie);
>  
>       // Set _movie before calling ::render
> +     std::cout << "invalidatedBounds11" << _invalidatedBounds <<std::endl;
>       render();
>  }




reply via email to

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