/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/Merge.java

  • Committer: edam
  • Date: 2009-01-11 16:47:01 UTC
  • Revision ID: edam@waxworlds.org-20090111164701-tvnnv5axo6jd7ck0
- added GPL header comments to all files
- added GPLv3 to project as COPYING

Show diffs side-by-side

added added

removed removed

47
47
 
48
48
                // radio button selection
49
49
                RadioGroup rg = (RadioGroup)findViewById( R.id.merge_setting );
50
 
                editor.putInt( "merge_setting",
51
 
                                Doit.convertIdToAction( rg.getCheckedRadioButtonId() ) );
 
50
                editor.putInt( "merge_setting", rg.getCheckedRadioButtonId() );
52
51
 
53
52
                editor.commit();
54
53
        }
62
61
 
63
62
                // radio button selection
64
63
                RadioGroup rg = (RadioGroup)findViewById( R.id.merge_setting );
65
 
                rg.check( Doit.convertActionToId(
66
 
                                prefs.getInt( "merge_setting", Doit.ACTION_PROMPT ) ) );
 
64
                rg.check( prefs.getInt( "merge_setting", R.id.merge_prompt ) );
67
65
        }
68
66
 
69
67