Developer forums (C::B DEVELOPMENT STRICTLY!) > CodeCompletion redesign
Patch: function arguments added to autocomplete tooltip
ollydbg:
--- Quote from: p2rkw on January 13, 2013, 10:56:10 pm ---Gui added, last bugs fixed... It seems to be finished now :) http://developer.berlios.de/patch/?func=detailpatch&patch_id=3381&group_id=5358
(Ability to define custom sort order had been removed from this patch, so remember to clean your configuration file.)
--- End quote ---
Thanks! the patch is big, so I just apply the patch, and build it. I see two build warnings:
1,
--- Code: ---plugins\codecompletion\codecompletion.cpp|1658|warning: extended initializer lists only available with -std=c++0x or -std=gnu++0x [enabled by default]|
--- End code ---
The code is:
--- Code: --- ccSearchData searchData { control, editor->GetFilename() };
--- End code ---
So, it would better:
--- Code: ---ccSearchData searchData= { control, editor->GetFilename() };
--- End code ---
2,
--- Code: ---plugins\codecompletion\doxygen_parser.cpp|559|warning: comparison between signed and unsigned integer expressions [-Wsign-compare]|
--- End code ---
Here
--- Code: --- for(int i = 0; i < (size_t)(sizeof(arguments)/sizeof(arguments[0])); ++i )
--- End code ---
i should be unsigned int.
:)
killerbot:
size_t
p2rkw:
Ok, I'll fix it in next few days.
MortenMacFly:
--- Quote from: p2rkw on January 16, 2013, 02:05:04 am ---Ok, I'll fix it in next few days.
--- End quote ---
I did that already besides quite some other refinements. It did neither compile with wx29 nor under 64 bit. The include chain was wrong, you defined types twice and so on... Nothing serious, but it needed to be fixed. Maybe I should post an updated patch... Just I need to sort out the stuff...
p2rkw:
It will be nice.
Actually I added auto hide to documentation window. It's only few lines of code, but makes this window much less annoying.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version