Details
-
Bug
-
Resolution: Duplicate
-
P3: Somewhat important
-
None
-
Qt Creator 2.3.1
-
None
-
Qt SDK Version: qtsdkinstaller-x32-2011-10-18-Ubuntu8.04.4LTS.run
Qt creator version:
Qt Creator 2.3.1
Based on Qt 4.7.4 (32 bit)
Built on Sep 21 2011 at 11:16:49
From revision f184ced2e1
SDKTestRound27
Description
steps:
1. Define a struct colorcal and a std::vector<colorcal*>
struct colorcal
;
2. define a function to use it.
fun()
{
colorcal* c = new colorcal;
c. //when input the ".", it can be automatically change to "->", and the member variable "rgb" and "num" can be listed
// See assit.png.
std::vector<colorcal*> colorvector = new std::vector<colorcal>;
colorvector.push_back(c);
for(std::vector<colorcal*>::const_iterator it = colorvector->begin();it != colorvector->end();it++)
}
Attachments
Issue Links
- duplicates
-
QTCREATORBUG-1892 qt creator does not auto-suggest for STL-style iterator reference
- Closed
- replaces
-
QTCREATORBUG-7358 List of fields of a class doesn't pop up for iterators
- Closed