Author Topic: Code completion problem  (Read 3786 times)

loris_p

  • Guest
Code completion problem
« on: November 05, 2008, 07:02:48 pm »
Hi!
I started using Code::Blocks (Windows version) few days ago and I have a boring problem with code completion.
I use wxformbuilder to visually edit my forms. It creates a class for every frame (let this class be Frame). When I write on my class MyFrame: public Frame (all Frame components are protected) none of public or protected Frame members is autocompleted. This is very annoying because I have to watch every time on WxWidgets API wich are component's methods.
Does someone know how to solve this problem? Thanks.

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 6077
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: Code completion problem
« Reply #1 on: November 27, 2008, 05:33:28 pm »
this functionality is enabled?
Have you ever try reinstall code::blocks yet?
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.