4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-08 08:49:34 +00:00

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

@ -61,7 +61,7 @@ class TestClass : public QObject
// ...
public slots:
QString qstringMethod() { return QString(); };
bool boolMethod( const QString & ) { return true; };
bool boolMethod( const QString & ) { return true; };
};
QByteArray myTypeName;
@ -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,8 +80,8 @@ 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.
@ -109,7 +109,7 @@ class TestClass : public QObject
// ...
public slots:
QString qstringMethod() { return QString( "the result" ); };
bool boolMethod( const QString & ) { return true; };
bool boolMethod( const QString & ) { return true; };
};
TestClass *testClass = new TestClass;