553a554,566 > int do_save_dlg(lua_State* L) > { > const char* caption = luaL_optstring(L,1,"Open File"); > const char* filter = luaL_optstring(L,2,"All (*.*)|*.*"); > TOpenFile tof (get_parent(),caption,filter); > if (tof.go()) { > lua_pushstring(L,tof.file_name()); > } else { > lua_pushnil(L); > } > return 1; > } > 1249a1263 > {"save_dlg",do_save_dlg},