By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1048
Collapse All | Expand All

(-)tqca/src/qca.cpp (-2 / +2 lines)
Lines 1227-1239 Link Here
1227
	d->ext_ssf = x;
1227
	d->ext_ssf = x;
1228
}
1228
}
1229
1229
1230
void SASL::setLocalAddr(const TQHostAddress &addr, Q_UINT16 port)
1230
void SASL::setLocalAddr(const TQHostAddress &addr, TQ_UINT16 port)
1231
{
1231
{
1232
	d->localAddr = addr;
1232
	d->localAddr = addr;
1233
	d->localPort = port;
1233
	d->localPort = port;
1234
}
1234
}
1235
1235
1236
void SASL::setRemoteAddr(const TQHostAddress &addr, Q_UINT16 port)
1236
void SASL::setRemoteAddr(const TQHostAddress &addr, TQ_UINT16 port)
1237
{
1237
{
1238
	d->remoteAddr = addr;
1238
	d->remoteAddr = addr;
1239
	d->remotePort = port;
1239
	d->remotePort = port;
(-)tqca/src/qcaprovider.h (-1 / +1 lines)
Lines 141-147 Link Here
141
struct TQCA_SASLHostPort
141
struct TQCA_SASLHostPort
142
{
142
{
143
	TQHostAddress addr;
143
	TQHostAddress addr;
144
	Q_UINT16 port;
144
	TQ_UINT16 port;
145
};
145
};
146
146
147
struct TQCA_SASLNeedParams
147
struct TQCA_SASLNeedParams

Return to bug 1048