[Libufo-commits] ufo-0.5/include/ufo/signals uslot.hpp,1.13,1.14
Status: Beta
Brought to you by:
schmidtjf
|
From: Johannes S. <sch...@us...> - 2005-09-30 12:36:35
|
Update of /cvsroot/libufo/ufo-0.5/include/ufo/signals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3955/include/ufo/signals Modified Files: uslot.hpp Log Message: Fixed warnings about unsed parameters. Index: uslot.hpp =================================================================== RCS file: /cvsroot/libufo/ufo-0.5/include/ufo/signals/uslot.hpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** uslot.hpp 15 Sep 2005 10:22:44 -0000 1.13 --- uslot.hpp 30 Sep 2005 12:36:27 -0000 1.14 *************** *** 50,59 **** // our shut down. If from_child is true, we do not need // to clean up the child links. ! virtual void notify(bool from_child) { m_died = true; } virtual bool died() { return m_died; } ! virtual bool equals(const USlotNode * node) const { return false; } bool connected() { return _proxy != NULL; } --- 50,59 ---- // our shut down. If from_child is true, we do not need // to clean up the child links. ! virtual void notify(bool /* from_child */) { m_died = true; } virtual bool died() { return m_died; } ! virtual bool equals(const USlotNode * /* node */) const { return false; } bool connected() { return _proxy != NULL; } |