News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

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