[D] Removed options from cells
This commit is contained in:
parent
8c7e2b947d
commit
c8fe3fe280
@ -9,7 +9,6 @@
|
|||||||
|
|
||||||
struct fort_cell {
|
struct fort_cell {
|
||||||
string_buffer_t *str_buffer;
|
string_buffer_t *str_buffer;
|
||||||
fort_table_options_t *options;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
fort_cell_t *create_cell(void)
|
fort_cell_t *create_cell(void)
|
||||||
@ -22,7 +21,6 @@ fort_cell_t *create_cell(void)
|
|||||||
F_FREE(cell);
|
F_FREE(cell);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
cell->options = NULL;
|
|
||||||
/*init_cell_options(&(cell->options));*/
|
/*init_cell_options(&(cell->options));*/
|
||||||
return cell;
|
return cell;
|
||||||
}
|
}
|
||||||
@ -32,7 +30,6 @@ void destroy_cell(fort_cell_t *cell)
|
|||||||
if (cell == NULL)
|
if (cell == NULL)
|
||||||
return;
|
return;
|
||||||
destroy_string_buffer(cell->str_buffer);
|
destroy_string_buffer(cell->str_buffer);
|
||||||
F_FREE(cell->options);
|
|
||||||
F_FREE(cell);
|
F_FREE(cell);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user