--- smsdaemon/plugins/StatusPlugin.cpp 2008/06/17 06:29:19 102 +++ smsdaemon/plugins/StatusPlugin.cpp 2008/12/07 20:58:41 149 @@ -1,5 +1,5 @@ #include "StatusPlugin.h" -#include "IGsmModem.h" +#include "ISmsTransceiver.h" #include "Sms.h" #include @@ -13,7 +13,7 @@ } -void StatusPlugin::Execute(IGsmModem& modem, SMS& sms) +void StatusPlugin::Execute(ISmsTransceiver& modem, SMS& sms) { Common* cmn = Common::instance(); @@ -34,6 +34,6 @@ os << "Uptime: " << days << "d, " << hour << ":" << min << ":" << sec; - modem.SendSms(sms.sender, os.str(), true ); + modem.SendSms(sms.GetSender(), os.str(), true ); }