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:
private:
    void Start(const wxString& file);

When insert the implementation, it's became to:
/** @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
Quote from: Loaden on February 26, 2010, 02:39:06 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
Quote from: MortenMacFly on February 26, 2010, 03:35:09 PM
Quote from: Loaden on February 26, 2010, 02:39:06 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
Quote from: ollydbg on February 26, 2010, 04:48:12 PM
my patch in parsertest project. 
Is this fixed meanwhile in this project?