MCPcopy Create free account
hub / github.com/arrayfire/forge / fg_set_window_title

Function fg_set_window_title

src/api/c/window.cpp:84–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82}
83
84fg_err fg_set_window_title(fg_window pWindow, const char* pTitle)
85{
86 try {
87 ARG_ASSERT(0, (pWindow!=0));
88 ARG_ASSERT(1, (pTitle!=0));
89
90 getWindow(pWindow)->setTitle(pTitle);
91 }
92 CATCHALL
93 return FG_ERR_NONE;
94}
95
96fg_err fg_set_window_position(fg_window pWindow, const int pX, const int pY)
97{

Callers 1

setTitleMethod · 0.85

Calls 2

getWindowFunction · 0.85
setTitleMethod · 0.45

Tested by

no test coverage detected