nuke remaining zoom-controller artifact

This commit is contained in:
Andy2 2010-06-28 06:31:15 -07:00
parent 29aa4627e9
commit 6026ad31ba
3 changed files with 0 additions and 7 deletions

View file

@ -309,11 +309,6 @@ public class BoardView extends View implements DrawCtx, BoardHandler,
}
}
// Get rid of this if not wanted for disabling zoom toolbar button
public void zoomChanged( final boolean[] canZoom )
{
}
// DrawCtxt interface implementation
public boolean scoreBegin( Rect rect, int numPlayers, int[] scores,
int remCount, int dfs )

View file

@ -391,7 +391,6 @@ public class JNIThread extends Thread {
draw = XwJNI.board_zoom( m_jniGamePtr,
((Integer)args[0]).intValue(),
barr );
m_drawer.zoomChanged( barr );
break;
case CMD_VALUES:

View file

@ -25,5 +25,4 @@ import android.graphics.Rect;
public interface SyncedDraw {
void doJNIDraw();
void doIconDraw( int resID, final Rect rect );
void zoomChanged( boolean[] canZoom );
}