gnash-commit
[Top][All Lists]
Advanced

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

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


From: Russell Nelson
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r9751: Can't use ``thingie'' in a shell script
Date: Mon, 15 Sep 2008 16:06:16 -0400
User-agent: Bazaar (1.5)

------------------------------------------------------------
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
=== modified file 'configure.ac'
--- a/configure.ac      2008-09-12 21:18:45 +0000
+++ b/configure.ac      2008-09-15 20:06:16 +0000
@@ -3004,7 +3004,7 @@
   echo "        DEJAGNU's runtest is $DEJAGNU"
 else
   echo "        WARNING: You need the dejagnu package installed to get a 
summary" >&4
-  echo "                 report after running ``make check''" >&4
+  echo "                 report after running ''make check''" >&4
   echo "                 Install it from http://www.gnu.org/software/dejagnu/"; 
>&4
   echo "                 or .deb users: apt-get install dejagnu" >&4
   #echo "                or .rpm users: yum install dejagnu" >&4

=== 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]