Author Topic: The 27 september 2006 build will NOT be out.  (Read 6525 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
The 27 september 2006 build will NOT be out.
« on: September 27, 2006, 05:25:36 pm »
no commits

Offline ahlongxp

  • Multiple posting newcomer
  • *
  • Posts: 22
Re: The 27 september 2006 build will NOT be out.
« Reply #1 on: September 28, 2006, 07:49:22 am »
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
	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
	while ( scanf("%s %d", s, &n) == 2)
{
    printf(doit(s, n));
    putchar('\n');
}
it works
ubuntu 8.04
wxWidget 2.8