git-svn-id: svn://db.shs.com.ru/pip@495 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2017-05-04 16:33:06 +00:00
parent f01851df67
commit b9c609ecad
2 changed files with 2 additions and 2 deletions

View File

@@ -458,7 +458,7 @@ PIVector<PIObject * > & PIObject::objects() {
}
PIObject::callAddrV(void * slot, void * obj, int args, const PIVector<PIVariant> & vl) {
void PIObject::callAddrV(void * slot, void * obj, int args, const PIVector<PIVariant> & vl) {
args = piMini(args, vl.size_s());
switch (args) {
case 0: ((void(*)(void *))slot)(obj); break;