MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / SetTitle

Method SetTitle

src/Windows/DockableWindow.cpp:171–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169}
170
171int DockableWindow::SetTitle(const TCHAR* title) {
172 if (lstrlen(title) > (m_titleSize-1))
173 return -1;
174
175 lstrcpy(m_title, title);
176
177 if (m_registered)
178 UpdateDockInfo();
179
180 return 0;
181}
182
183int DockableWindow::SetInfo(const TCHAR* info) {
184 if (lstrlen(info) > (m_infoSize-1))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected