| 430 | } |
| 431 | |
| 432 | void NetHackQtBind::qt_putstr(winid wid, int attr, const char *text) |
| 433 | { |
| 434 | NetHackQtWindow* window=id_to_window[(int)wid]; |
| 435 | window->PutStr(attr,QString::fromLatin1(text)); |
| 436 | } |
| 437 | |
| 438 | void NetHackQtBind::qt_putstr(winid wid, int attr, const std::string& text) |
| 439 | { |