Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Plugins development => Topic started by: ollydbg on June 03, 2014, 04:45:47 am

Title: Todo list plugin improvements, do not refresh the list after double click
Post by: ollydbg on June 03, 2014, 04:45:47 am
I have a serial of git patches to fix this issue, I will put it here for comments and review for a few days, if no objections, I will commit to the trunk.

The change log:

Quote
* todo list plugin: disable refresh the list on double click. When user double click on a todo list item, it will move the caret to the source location, since the source file is already parsed, we don't need to parse it again.

 * todo list plugin: use the second kind of constructor of wxCombobox, as it can given a wxArrayString reference, no hard-coded number is needed.

 - todo list plugin: add debug logs (it is currently disabled)

 - todo list plugin: remove unused member variable ToDoList::m_timer.

 - todo list plugin: remove an unused function prototype

 - todo list plugin: add many comments (no functional change)

Title: Re: Todo list plugin improvements, do not refresh the list after double click
Post by: oBFusCATed on June 03, 2014, 09:59:52 am
Why don't you just make a branch in github?
Title: Re: Todo list plugin improvements, do not refresh the list after double click
Post by: ollydbg on June 03, 2014, 11:28:52 am
Why don't you just make a branch in github?
The reason is that github sometimes will be blocked here, so access to it is not quite stable.... :(
Title: Re: Todo list plugin improvements, do not refresh the list after double click
Post by: oBFusCATed on June 03, 2014, 08:12:16 pm
Bleh...
Title: Re: Todo list plugin improvements, do not refresh the list after double click
Post by: ollydbg on June 15, 2014, 01:24:29 pm
The patches are in trunk now. ;D