From b9c609ecadc033b384e779de72d68ff5c29dde8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=B5=D0=BB=D0=B8=D0=BF=D0=B5=D0=BD=D0=BA=D0=BE=20?= =?UTF-8?q?=D0=98=D0=B2=D0=B0=D0=BD?= Date: Thu, 4 May 2017 16:33:06 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/pip@495 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5 --- src_main/core/piobject.cpp | 2 +- src_main/core/piobject.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src_main/core/piobject.cpp b/src_main/core/piobject.cpp index 4b4454bc..ae5b211f 100755 --- a/src_main/core/piobject.cpp +++ b/src_main/core/piobject.cpp @@ -458,7 +458,7 @@ PIVector & PIObject::objects() { } -PIObject::callAddrV(void * slot, void * obj, int args, const PIVector & vl) { +void PIObject::callAddrV(void * slot, void * obj, int args, const PIVector & vl) { args = piMini(args, vl.size_s()); switch (args) { case 0: ((void(*)(void *))slot)(obj); break; diff --git a/src_main/core/piobject.h b/src_main/core/piobject.h index e4842ffb..b3cd4649 100755 --- a/src_main/core/piobject.h +++ b/src_main/core/piobject.h @@ -887,7 +887,7 @@ private: void postQueuedEvent(const QueuedEvent & e); static PIVector & objects(); - static callAddrV(void * slot, void * obj, int args, const PIVector & vl); + static void callAddrV(void * slot, void * obj, int args, const PIVector & vl); PIVector connections; PIMap properties_;