diff --git a/kded/plugins/telephony/telephonyplugin.cpp b/kded/plugins/telephony/telephonyplugin.cpp index ecc2b7161..ab5c8075a 100644 --- a/kded/plugins/telephony/telephonyplugin.cpp +++ b/kded/plugins/telephony/telephonyplugin.cpp @@ -55,8 +55,8 @@ KNotification* TelephonyPlugin::createNotification(const NetworkPackage& np) } else if (event == "sms") { type = "smsReceived"; icon = "mail-receive"; - QString content = np.get("messageBody",""); - content = i18n("SMS from %1: %2", phoneNumber, content); + QString messageBody = np.get("messageBody",""); + content = i18n("SMS from %1: %2", phoneNumber, messageBody); } else if (event == "talking") { return NULL; } else {