()
| 188 | } |
| 189 | |
| 190 | private void toogleSmiles() { |
| 191 | Object o = getFocusedObject(); |
| 192 | if (o != null) { |
| 193 | MessageItem item = (MessageItem) o; |
| 194 | //#ifdef SMILES |
| 195 | item.toggleSmiles(this); |
| 196 | //#endif |
| 197 | //#ifdef SMILES |
| 198 | if (!item.smilesEnabled() && cf.hideTimestamps) { |
| 199 | sd.roster.showInfo(null, item.getTipString()); |
| 200 | } |
| 201 | //#endif |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | public void doKeyAction(int key) { |
| 206 | switch(key) { |
no test coverage detected