Revision: 2988
http://sourceforge.net/p/swingme/code/2988
Author: yuranet
Date: 2025-12-25 00:50:19 +0000 (Thu, 25 Dec 2025)
Log Message:
-----------
dont forget to transform warning lines
Modified Paths:
--------------
SwingME/src/net/yura/mobile/gui/Graphics2D.java
Modified: SwingME/src/net/yura/mobile/gui/Graphics2D.java
===================================================================
--- SwingME/src/net/yura/mobile/gui/Graphics2D.java 2025-12-24 23:54:21 UTC (rev 2987)
+++ SwingME/src/net/yura/mobile/gui/Graphics2D.java 2025-12-25 00:50:19 UTC (rev 2988)
@@ -183,16 +183,15 @@
Logger.info("########################################################### " + img);
g.setColor( new Random().nextInt() );
for (int pos_x=start_x;pos_x<end_x;pos_x=pos_x+src_w) {
- g.drawLine(pos_x, start_y, pos_x, end_y);
+ drawLine(pos_x, start_y, pos_x, end_y);
}
for (int pos_y=start_y;pos_y<end_y;pos_y=pos_y+src_h) {
- g.drawLine(start_x, pos_y, end_x, pos_y);
+ drawLine(start_x, pos_y, end_x, pos_y);
}
}
}
}
//#enddebug
-
}
static int maxView = -1;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|