Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => CodeCompletion redesign => Topic started by: Borr on October 25, 2010, 01:47:51 pm

Title: vector+struct CC problem
Post by: Borr on October 25, 2010, 01:47:51 pm
1. CC list is off-screen. see additional
2. CC does not work with vector+struct
Code
//header
struct rows{
wxString name;
wxString SN;
};
std::vector<rows> table;
//cpp
Grid->SetCellValue(i, colName, table[i]./*code completion does not show the list of variables - name and SN*/);

C::B svn 6752 from binary  OS: WinXP SP3
Title: Re: vector+struct CC problem
Post by: ollydbg on November 06, 2010, 04:21:15 am
for the "off screen issue", I think we should adjust the tip window ( move it or restrict its size ).

the other issue, I will check it later.