Forum for English speaking Miranda NG users > Development

Code fixes

(1/1)

hydrogen fluoride:
At ...\src\mir_app\src\netlib_openconn.cpp this:

--- Code: ---if (rc && lasterr) SetLastError(lasterr);
--- End code ---
should be replacesd by this:

--- Code: ---if (rc && lasterr != 0) SetLastError(lasterr);
--- End code ---

ghazan:
what for?

hydrogen fluoride:
This fix to do if it needed.

--- Code: ---void ICQUser::setStatus(unsigned short newStatus)
{
if (statusVal != newStatus)
{
statusVal = newStatus;
g_plugin.setWord(hContact, "Status", newStatus);
}
}
--- End code ---

hydrogen fluoride:
Attached code to improve IRC channels request.

https://github.com/miranda-ng/miranda-ng/issues/3243
https://forum.miranda-ng.org/index.php?topic=6511.0

Navigation

[0] Message Index

There was an error while thanking
Thanking...
Go to full version