(int x, int y)
| 186 | } |
| 187 | |
| 188 | protected final void pointerPressed(int x, int y) { |
| 189 | //#ifdef AUTOSTATUS |
| 190 | AutoStatus.getInstance().userActivity(Config.AWAY_IDLE); |
| 191 | //#endif |
| 192 | try { |
| 193 | list.pointerPressed(x, y); |
| 194 | } catch (Exception e) { |
| 195 | if (sd.roster != null) { |
| 196 | sd.roster.errorLog("pointerpressed exception: " + e.getMessage()); |
| 197 | } |
| 198 | if (StaticData.Debug) |
| 199 | e.printStackTrace(); |
| 200 | } |
| 201 | repaint(); |
| 202 | } |
| 203 | |
| 204 | protected final void pointerDragged(int x, int y) { |
| 205 | try { |
nothing calls this directly
no test coverage detected