blob: 81bb1f614ad5a8171ccbdfee12f3fa4fc2719b26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
int short_function_name()
{
call_some_really_long_function.of_some_sort(
some_long_parameter1, some_long_parameter2);
void *test_func =
library->symbol( TQString(TQString("test_%1").arg(
module2.factoryName())).utf8() );
CHECK_COMPLETE_SIZE (iceConn, ICE_AuthNextPhase, length,
message->authDataLength +
SIZEOF (iceAuthNextPhaseMsg),
authData,
iceConn->connect_to_you ?
IceFatalToConnection :
IceFatalToProtocol);
}
|