News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

The 27 september 2006 build will NOT be out.

Started by killerbot, September 27, 2006, 05:25:36 PM

Previous topic - Next topic

killerbot


ahlongxp

I want to say sth about code-completion.
now we have to add a space between "(" and "scanf" to make code-completion work.
if you code like this:
Code (cpp) Select

while (scanf("%s %d", s, &n) == 2)
{
    printf(doit(s, n));
    putchar('\n');
}

no popup window appear?
when we change it like this:
Code (cpp) Select

while ( scanf("%s %d", s, &n) == 2)
{
    printf(doit(s, n));
    putchar('\n');
}

it works
ubuntu 8.04
wxWidget 2.8