[Qt-interest] About QtCreator
rcyboom
rcyboom at 163.com
Fri Feb 10 14:24:14 CET 2012
Hello,All:
When I updated My QtCreator to 2.4.1,I found:
1."Format C++ code" has no longer exists.
eg:
for(int i=0;i<10;i++){if(i==8)return;}
can auto formating to:
for(int i=0;i<10;i++)
{
if(i==8)
return;
}
How to continue to use this feature?
2.I want to join this feature:
When I declaring a member function in class,QtCreator can help me writing definition code ,Such as [ctrl+shift+c] in delphi.
eg:
when I declaring this function in a class:
class a(){
voide abc();}
QtCreator can auto write this code in CPP file:
void a::abc{
}
My english is poor,sorry & thanks! ^_^
More information about the Qt-interest-old
mailing list