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()); args = piMini(args, vl.size_s());
switch (args) { switch (args) {
case 0: ((void(*)(void *))slot)(obj); break; case 0: ((void(*)(void *))slot)(obj); break;

View File

@@ -887,7 +887,7 @@ private:
void postQueuedEvent(const QueuedEvent & e); void postQueuedEvent(const QueuedEvent & e);
static PIVector<PIObject * > & objects(); static PIVector<PIObject * > & objects();
static callAddrV(void * slot, void * obj, int args, const PIVector<PIVariant> & vl); static void callAddrV(void * slot, void * obj, int args, const PIVector<PIVariant> & vl);
PIVector<Connection> connections; PIVector<Connection> connections;
PIMap<PIString, PIVariant> properties_; PIMap<PIString, PIVariant> properties_;