Skip to content
Snippets Groups Projects
Commit 300df843 authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[*] Fix. Rename the name of the object from Cellframe.Chain to...

[*] Fix. Rename the name of the object from Cellframe.Chain to Cellframe.ChainGDB. And corrections have been made to the DapChainGDBObject_DapChainGDBType structure. And also removed the dap_chain_gdb_t field  from the PyDapChainGDBObject structure since it is not used.
parent 5ab18d9b
No related branches found
No related tags found
1 merge request!26Support 3689
......@@ -10,8 +10,6 @@ extern "C" {
typedef struct PyDapChainGDB{
PyObject_HEAD
dap_chain_gdb_t *gdb;
}PyDapChainGDBObject;
int dap_chain_gdb_init_py(void);
......@@ -30,8 +28,8 @@ PyMethodDef DapChainGDBMethod[] = {
static PyTypeObject DapChainGDBObject_DapChainGDBType = {
PyVarObject_HEAD_INIT(NULL, 0)
"CellFrame.Chain", /* tp_name */
sizeof(PyDapChainObject), /* tp_basicsize */
"CellFrame.ChainGDB", /* tp_name */
sizeof(PyDapChainGDBObject), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment