formatting

svn path=/trunk/kdesupport/qca/; revision=671089
This commit is contained in:
Justin Karneges 2007-06-03 19:01:50 +00:00
parent dd17361f15
commit 7142b861db
2 changed files with 670 additions and 670 deletions

File diff suppressed because it is too large Load Diff

View File

@ -69,7 +69,7 @@ QByteArray myTypeName;
TestClass testClass;
QList<QByteArray> argsList; // empty list, since no args
myTypeName = QCA::methodReturnType( testClass.metaObject(), QByteArray( "qStringMethod" ), argsList );
myTypeName = QCA::methodReturnType( testClass.metaObject(), QByteArray( "qstringMethod" ), argsList );
// myTypeName is "QString"
myTypeName = QCA::methodReturnType( testClass.metaObject(), QByteArray( "boolMethod" ), argsList );
@ -80,7 +80,7 @@ myTypeName = QCA::methodReturnType( testClass.metaObject(), QByteArray( "boolMet
// myTypeName is "bool"
\endcode
The return type name of a method return void is "", not "void"
The return type name of a method returning void is an empty string, not "void"
\note This function is not normally required for use with
%QCA. It is provided for use in your code, if required.