mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
Fixes needed after merging in master
Also, fix unit tests.
This commit is contained in:
parent
3142a9a225
commit
cf718780f6
@ -3,14 +3,14 @@ package com.fsck.k9.activity.setup;
|
|||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
|
import android.app.DialogFragment;
|
||||||
|
import android.app.FragmentTransaction;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
import android.os.Process;
|
import android.os.Process;
|
||||||
import android.support.v4.app.DialogFragment;
|
|
||||||
import android.support.v4.app.FragmentTransaction;
|
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.View.OnClickListener;
|
import android.view.View.OnClickListener;
|
||||||
@ -524,7 +524,7 @@ public class AccountSetupCheckSettings extends K9Activity implements OnClickList
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
FragmentTransaction ta = getSupportFragmentManager().beginTransaction();
|
FragmentTransaction ta = getFragmentManager().beginTransaction();
|
||||||
ta.add(fragment, getDialogTag(dialogId));
|
ta.add(fragment, getDialogTag(dialogId));
|
||||||
ta.commitAllowingStateLoss();
|
ta.commitAllowingStateLoss();
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ public class ImapStoreUriTest extends TestCase {
|
|||||||
extra.put("pathPrefix", "customPathPrefix");
|
extra.put("pathPrefix", "customPathPrefix");
|
||||||
|
|
||||||
ServerSettings settings = new ServerSettings(ImapStore.STORE_TYPE, "server", 143,
|
ServerSettings settings = new ServerSettings(ImapStore.STORE_TYPE, "server", 143,
|
||||||
ConnectionSecurity.NONE, AuthType.PLAIN, "user", "pass", extra);
|
ConnectionSecurity.NONE, AuthType.PLAIN, "user", "pass", null, extra);
|
||||||
|
|
||||||
String uri = Store.createStoreUri(settings);
|
String uri = Store.createStoreUri(settings);
|
||||||
|
|
||||||
@ -95,7 +95,7 @@ public class ImapStoreUriTest extends TestCase {
|
|||||||
extra.put("pathPrefix", "");
|
extra.put("pathPrefix", "");
|
||||||
|
|
||||||
ServerSettings settings = new ServerSettings(ImapStore.STORE_TYPE, "server", 143,
|
ServerSettings settings = new ServerSettings(ImapStore.STORE_TYPE, "server", 143,
|
||||||
ConnectionSecurity.NONE, AuthType.PLAIN, "user", "pass", extra);
|
ConnectionSecurity.NONE, AuthType.PLAIN, "user", "pass", null, extra);
|
||||||
|
|
||||||
String uri = Store.createStoreUri(settings);
|
String uri = Store.createStoreUri(settings);
|
||||||
|
|
||||||
@ -104,7 +104,7 @@ public class ImapStoreUriTest extends TestCase {
|
|||||||
|
|
||||||
public void testCreateStoreUriImapNoExtra() {
|
public void testCreateStoreUriImapNoExtra() {
|
||||||
ServerSettings settings = new ServerSettings(ImapStore.STORE_TYPE, "server", 143,
|
ServerSettings settings = new ServerSettings(ImapStore.STORE_TYPE, "server", 143,
|
||||||
ConnectionSecurity.NONE, AuthType.PLAIN, "user", "pass");
|
ConnectionSecurity.NONE, AuthType.PLAIN, "user", "pass", null);
|
||||||
|
|
||||||
String uri = Store.createStoreUri(settings);
|
String uri = Store.createStoreUri(settings);
|
||||||
|
|
||||||
@ -116,7 +116,7 @@ public class ImapStoreUriTest extends TestCase {
|
|||||||
extra.put("autoDetectNamespace", "true");
|
extra.put("autoDetectNamespace", "true");
|
||||||
|
|
||||||
ServerSettings settings = new ServerSettings(ImapStore.STORE_TYPE, "server", 143,
|
ServerSettings settings = new ServerSettings(ImapStore.STORE_TYPE, "server", 143,
|
||||||
ConnectionSecurity.NONE, AuthType.PLAIN, "user", "pass", extra);
|
ConnectionSecurity.NONE, AuthType.PLAIN, "user", "pass", null, extra);
|
||||||
|
|
||||||
String uri = Store.createStoreUri(settings);
|
String uri = Store.createStoreUri(settings);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user