Hey guys,
first of all i realy like the code::blocks ide
but there is an annoying usability issue on the code completion
if you are typing something like "this->set" the result is maybe something like that:
getPara1()
getPara2()
getPara3()
getPara4()
getPara5()
setPara1()
you get 5 unwanted functions / vars and only the last (and the following) is interesting.
Regards
MK0151
Quote from: MK0151 on January 12, 2013, 06:19:20 PM
you get 5 unwanted functions / vars and only the last (and the following) is interesting.
And how would you depict whats unwanted? Maybe another user want to actually use the first, second or...?!
yeah but than have you typed it or?
result now:
i typ "this->set"
getPara1() <-unwanted
getPara2() <-unwanted
getPara3() <-unwanted
getPara4() <-unwanted
getPara5() <-unwanted
setPara1() <-wanted
better result:
setPara1() <-wanted
setPara2() <-wanted
setPara3() <-wanted
setPara4() <-wanted
setPara5() <-wanted
setPara6() <-wanted
Can you provide simple self-contained example, which can be used to reproduce the issue?
@oBFusCATed: Autocomplete listbox is automatically opened when you type "this->" and it isn't refreshed anymore.
@MK0151: you have to hit ctrl+space to refresh list.
Quote from: p2rkw on January 12, 2013, 09:53:55 PM
@oBFusCATed: Autocomplete listbox is automatically opened when you type "this->" and it isn't refreshed anymore.
I know about this.
hey
thx p2rkw work perfectly