Renamed love.window.setCaption to love.window.setTitle (resolves issue #703)

This commit is contained in:
Alex Szpakowski
2013-08-14 11:16:41 -03:00
parent 59712c344f
commit 76565a3e11
4 changed files with 10 additions and 9 deletions
+4 -4
View File
@@ -198,14 +198,14 @@ int w_getIcon(lua_State *L)
return 1;
}
int w_setCaption(lua_State *L)
int w_setTitle(lua_State *L)
{
std::string title = luax_checkstring(L, 1);
instance->setWindowTitle(title);
return 0;
}
int w_getCaption(lua_State *L)
int w_getTitle(lua_State *L)
{
luax_pushstring(L, instance->getWindowTitle());
return 1;
@@ -242,8 +242,8 @@ static const luaL_Reg functions[] =
{ "getDimensions", w_getDimensions },
{ "setIcon", w_setIcon },
{ "getIcon", w_getIcon },
{ "setCaption", w_setCaption },
{ "getCaption", w_getCaption },
{ "setTitle", w_setTitle },
{ "getTitle", w_getTitle },
{ "hasFocus", w_hasFocus },
{ "hasMouseFocus", w_hasMouseFocus },
{ "isVisible", w_isVisible },