()
| 154 | } |
| 155 | |
| 156 | public static void invertSkin() { |
| 157 | for (Enumeration r=colorsContainer.elements(); r.hasMoreElements();) { |
| 158 | ColorItem c=(ColorItem)r.nextElement(); |
| 159 | if (c.color!=0x010101) |
| 160 | c.color=0xFFFFFF-c.color; |
| 161 | } |
| 162 | saveToStorage(); |
| 163 | VirtualCanvas.getInstance().repaint(); |
| 164 | } |
| 165 | |
| 166 | //#if NICK_COLORS |
| 167 | public static int strong(int color) { |
no test coverage detected