Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 30, 2006, 6:25:19 PM (18 years ago)
Author:
bensch
Message:

EVENTS WORK :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/gui/gl_gui/signal_connector.cc

    r7855 r7985  
    5151  }
    5252
    53   void SignalConnector::operator()(const std::string& parameters) const
     53
     54  void SignalConnector::operator()() const
     55  {
     56    if (this->isValid())
     57      (*this->exec)(this->object, 0, NULL);
     58  }
     59
     60  void SignalConnector::operator()(const MultiType& value0) const
    5461  {
    5562    if (exec != NULL && object != NULL)
    56       (*this->exec)(this->object, parameters);
     63      (*this->exec)(this->object, 1, &value0);
    5764  }
    5865
Note: See TracChangeset for help on using the changeset viewer.