| 6827 | } |
| 6828 | |
| 6829 | virtual olc::rcode SetWindowTitle(const std::string& s) override |
| 6830 | { |
| 6831 | #ifdef UNICODE |
| 6832 | SetWindowText(olc_hWnd, ConvertS2W(s).c_str()); |
| 6833 | #else |
| 6834 | SetWindowText(olc_hWnd, s.c_str()); |
| 6835 | #endif |
| 6836 | return olc::OK; |
| 6837 | } |
| 6838 | |
| 6839 | olc::rcode ShowWindowFrame(const bool bShowFrame) |
| 6840 | { |
nothing calls this directly
no outgoing calls
no test coverage detected