mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
cleanup -- oops
This commit is contained in:
parent
7e570cff2c
commit
6386aef512
2 changed files with 0 additions and 20 deletions
|
@ -207,7 +207,6 @@ public class BoardView extends View implements BoardHandler, SyncedDraw {
|
||||||
} else if ( ! m_measuredFromDims ) {
|
} else if ( ! m_measuredFromDims ) {
|
||||||
// Log.d( TAG, "onDraw(): m_measuredFromDims not set" );
|
// Log.d( TAG, "onDraw(): m_measuredFromDims not set" );
|
||||||
} else {
|
} else {
|
||||||
Log.d( TAG, "onDraw(): ready to go!" );
|
|
||||||
Bitmap bitmap = s_bitmap;
|
Bitmap bitmap = s_bitmap;
|
||||||
if ( Build.VERSION.SDK_INT >= Build.VERSION_CODES.N ) {
|
if ( Build.VERSION.SDK_INT >= Build.VERSION_CODES.N ) {
|
||||||
bitmap = Bitmap.createBitmap(bitmap);
|
bitmap = Bitmap.createBitmap(bitmap);
|
||||||
|
@ -350,7 +349,6 @@ public class BoardView extends View implements BoardHandler, SyncedDraw {
|
||||||
@Override
|
@Override
|
||||||
public void dimsChanged( BoardDims dims )
|
public void dimsChanged( BoardDims dims )
|
||||||
{
|
{
|
||||||
Log.d( TAG, "dimsChanged(%s)", dims );
|
|
||||||
m_dims = dims;
|
m_dims = dims;
|
||||||
m_parent.runOnUiThread( new Runnable() {
|
m_parent.runOnUiThread( new Runnable() {
|
||||||
public void run()
|
public void run()
|
||||||
|
|
|
@ -9,27 +9,9 @@ RES_SRC = ./res_src
|
||||||
RES_DEST = ./app/src/main/res
|
RES_DEST = ./app/src/main/res
|
||||||
|
|
||||||
all: $(TARGETS)
|
all: $(TARGETS)
|
||||||
pwd
|
|
||||||
echo $(SRCS)
|
|
||||||
echo $(TARGETS)
|
|
||||||
|
|
||||||
# all: $(TARGETS)
|
|
||||||
|
|
||||||
$(RES_DEST)/value%/strings.xml: $(RES_SRC)/value%/strings.xml
|
$(RES_DEST)/value%/strings.xml: $(RES_SRC)/value%/strings.xml
|
||||||
./scripts/copy-strings.py -f $<
|
./scripts/copy-strings.py -f $<
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(TARGETS)
|
rm -f $(TARGETS)
|
||||||
|
|
||||||
# SRC = $(wildcard *.html)
|
|
||||||
# TAR = $(SRC:.html=.markdown)
|
|
||||||
|
|
||||||
# .PHONY: all clean
|
|
||||||
|
|
||||||
# all: $(TAR)
|
|
||||||
|
|
||||||
# %.markdown: %.html
|
|
||||||
# pandoc -o $< $@
|
|
||||||
|
|
||||||
# clean:
|
|
||||||
# rm -f $(TAR)
|
|
||||||
|
|
Loading…
Reference in a new issue