Ticket #11 (new Bug) — at Version 4
Several bugs related to precedences graph (2)
Reported by: | Jerome Legrand | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 3.1 |
Component: | graphical_editor | Version: | trunk |
Keywords: | Cc: |
Description (last modified by jlegrand) (diff)
These bugs has been found and non resolved in ticket 10 fixes.
Bug 1
"new item" dialog box is modal but does not remain visible if the user click on another Cheddar window.
Bug 2
2 structures (an array and a list) are used to manage item in "dependences graph" dialog box. A variable represents last item added index. When an item is added, this variable is incremented (Ok) but when an item is removed, it is not decremented...
Furthermore, the use of the 2 structures is not clear in the source code...
Bug 3
One can find the following string hard coded : "message", "buffer" and "task"...
Bug 4
When a user add an item, a new_item_object is allocated. If the item creation is canceled, this object is not freed...
Bug 5
When an item is created, its location on the precedences graph is on coordinate (0, 0). It should be located on mouse click coordinate.
Change History
comment:2 in reply to: ↑ description Changed 17 years ago by jerome
Replying to Jerome Legrand:
When an item is added, this variable is incremented (Ok) but when an item is removed, it is not decremented...
Last_Item is now decremented.