From 3e0cbb1bb6da6d5dc283ab46aa6a00215efc03c0 Mon Sep 17 00:00:00 2001 From: Danny Baumann Date: Thu, 3 Jan 2013 09:39:02 +0100 Subject: [PATCH] Fixed deprecation warnings. --- src/com/fsck/k9/controller/MessagingController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/fsck/k9/controller/MessagingController.java b/src/com/fsck/k9/controller/MessagingController.java index 798bf58c0..250be0cba 100644 --- a/src/com/fsck/k9/controller/MessagingController.java +++ b/src/com/fsck/k9/controller/MessagingController.java @@ -3134,7 +3134,7 @@ public class MessagingController implements Runnable { } notifMgr.notify(K9.FETCHING_EMAIL_NOTIFICATION - account.getAccountNumber(), - builder.getNotification()); + builder.build()); } private void notifySendTempFailed(Account account, Exception lastFailure) { @@ -3175,7 +3175,7 @@ public class MessagingController implements Runnable { K9.NOTIFICATION_LED_BLINK_FAST, true); notifMgr.notify(K9.SEND_FAILED_NOTIFICATION - account.getAccountNumber(), - builder.getNotification()); + builder.build()); } /** @@ -3220,7 +3220,7 @@ public class MessagingController implements Runnable { } notifMgr.notify(K9.FETCHING_EMAIL_NOTIFICATION - account.getAccountNumber(), - builder.getNotification()); + builder.build()); } private void notifyFetchingMailCancel(final Account account) {