/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to src/org/waxworlds/importcontacts/ImportVCF.java

  • Committer: edam
  • Date: 2009-01-13 06:35:26 UTC
  • Revision ID: edam@waxworlds.org-20090113063526-l9t1s9git4bav60a
- new contact's phone numebrs and email addresses are added to the caches after those contacts are updated to account for the situation where the same contact is imported again from another file (or the contact exists twice in the same file!?)

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * ConfigureVCF.java
 
2
 * ImportVCF.java
3
3
 *
4
4
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
5
 *
27
27
import android.os.Bundle;
28
28
import android.widget.EditText;
29
29
 
30
 
public class ConfigureVCF extends WizardActivity
 
30
public class ImportVCF extends WizardActivity
31
31
{
32
32
        @Override
33
33
        protected void onCreate( Bundle savedInstanceState )
34
34
        {
35
 
                setContentView( R.layout.configure_vcf );
 
35
                setContentView( R.layout.import_vcf );
36
36
                super.onCreate( savedInstanceState );
37
37
 
38
38
                setNextState( ImportContacts.STATE_MERGE );