--- smsdaemon/plugins/TogPlugin.cpp 2008/12/07 08:44:22 134 +++ smsdaemon/plugins/TogPlugin.cpp 2008/12/07 08:58:15 135 @@ -51,7 +51,7 @@ os << (*it).first << " - " << (*it).second.name << "\n"; } - return Util::str_latin2gsm(os.str()); + return os.str(); } void TogPlugin::Execute(IGsmModem& modem, SMS& sms) @@ -106,7 +106,7 @@ os << train.note << "\n"; } - modem.SendSms(sms.sender, Util::str_latin2gsm(os.str()), true); + modem.SendSms(sms.sender, os.str(), true);