Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => CodeCompletion redesign => Topic started by: Loaden on February 26, 2010, 01:29:48 pm

Title: Insert all class method without implementation question
Post by: Loaden on February 26, 2010, 01:29:48 pm
like this declaration:
Code
private:
    void Start(const wxString& file);
When insert the implementation, it's became to:
Code
/** @brief Start
  *
  * @todo: document this function
  */
void Frame::Start(constwxString&file)
{

}


"constwxString&file" : It's seems lost the blank type.
Title: Re: Insert all class method without implementation question
Post by: Jenna on February 26, 2010, 01:51:53 pm
No problems here (neither on debian 64-bit nor on winxp sp3).
Title: Re: Insert all class method without implementation question
Post by: blueshake on February 26, 2010, 01:57:16 pm
fine here too. :D
see the screen shot.
(http://i50.tinypic.com/2chqa8j.jpg)
Title: Re: Insert all class method without implementation question
Post by: Loaden on February 26, 2010, 02:39:06 pm
Find the reason, because ollydbg's patch.
fix now.
Title: Re: Insert all class method without implementation question
Post by: MortenMacFly on February 26, 2010, 03:35:09 pm
Find the reason, because ollydbg's patch.
fix now.
Which patch? What's wrong?
Title: Re: Insert all class method without implementation question
Post by: ollydbg on February 26, 2010, 04:48:12 pm
Find the reason, because ollydbg's patch.
fix now.
Which patch? What's wrong?
my patch in parsertest project. 
Title: Re: Insert all class method without implementation question
Post by: MortenMacFly on February 26, 2010, 06:03:24 pm
my patch in parsertest project. 
Is this fixed meanwhile in this project?