It is now impossible to open or clone a view that is not finished (= has

been closed at least once)
This commit is contained in:
Celine Mercier
2016-11-24 11:19:07 +01:00
parent 8abbfa203a
commit 70e056a2aa
2 changed files with 20 additions and 3 deletions

View File

@ -94,6 +94,8 @@ typedef struct Obiview_infos {
*/
Alias_column_pair_t column_references[MAX_NB_OPENED_COLUMNS]; /**< References (name, version and alias) for all the columns in the view.
*/
bool finished; /** Whether the view is finished and can be read.
*/
char comments[]; /**< Comments, additional informations on the view.
*/
} Obiview_infos_t, *Obiview_infos_p;