sms-list: don't signal completed messages

We will instead not export an SMS until completed and assembled
This commit is contained in:
Aleksander Morgado
2012-02-01 22:29:39 +01:00
parent a91948879c
commit 6f103c1366
3 changed files with 0 additions and 31 deletions

View File

@@ -173,15 +173,6 @@ sms_added (MMSmsList *list,
mm_gdbus_modem_messaging_emit_added (skeleton, sms_path, received);
}
static void
sms_completed (MMSmsList *list,
const gchar *sms_path,
MmGdbusModemMessaging *skeleton)
{
mm_dbg ("Completed SMS at '%s'", sms_path);
mm_gdbus_modem_messaging_emit_completed (skeleton, sms_path);
}
static void
sms_deleted (MMSmsList *list,
const gchar *sms_path,
@@ -407,10 +398,6 @@ interface_enabling_step (EnablingContext *ctx)
MM_SMS_ADDED,
G_CALLBACK (sms_added),
ctx->skeleton);
g_signal_connect (list,
MM_SMS_COMPLETED,
G_CALLBACK (sms_completed),
ctx->skeleton);
g_signal_connect (list,
MM_SMS_DELETED,
G_CALLBACK (sms_deleted),