From kde-core-devel Sat Aug 19 23:54:59 2000 From: Charles Date: Sat, 19 Aug 2000 23:54:59 +0000 To: kde-core-devel Subject: Patch to kdelibs/arts/flow X-MARC-Message: https://marc.info/?l=kde-core-devel&m=96672939624903 MIME-Version: 1 Content-Type: multipart/mixed; boundary="--Boundary-=_nWlrBbmQBhCDarzOwKkYHIDdqSCD" --Boundary-=_nWlrBbmQBhCDarzOwKkYHIDdqSCD Content-Type: text/plain Content-Transfer-Encoding: 8bit Please inspect this and give it your blessing. It fixes some stuff with calling connect on remote servers. -Charles and Stefan -- Charles - charles@kde.org "Hva sa du om min mor?" --Boundary-=_nWlrBbmQBhCDarzOwKkYHIDdqSCD Content-Type: text/plain; name="synthschedule.diff" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="synthschedule.diff" Index: synthschedule.cc =================================================================== RCS file: /home/kde/kdelibs/arts/flow/synthschedule.cc,v retrieving revision 1.27 diff -u -r1.27 synthschedule.cc --- synthschedule.cc 2000/07/17 13:56:59 1.27 +++ synthschedule.cc 2000/08/19 23:53:26 @@ -848,6 +848,14 @@ Port *port = sn->findPort(sourcePort); assert(port); + StdScheduleNode *destsn = + (StdScheduleNode *)destObject._node()->cast("StdScheduleNode"); + if(destsn) + { + sn->connect(sourcePort,destsn,destPort); + return; + } + ASyncPort *ap = port->asyncPort(); if(ap) --Boundary-=_nWlrBbmQBhCDarzOwKkYHIDdqSCD--