MCPcopy Create free account
hub / github.com/OneLoneCoder/olcPixelGameEngine / SetWindowTitle

Method SetWindowTitle

olcPixelGameEngine.h:6829–6837  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected