/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/edam/importcontacts/ConfigureVCF.java

  • Committer: edam
  • Date: 2010-10-30 09:55:31 UTC
  • Revision ID: edam@waxworlds.org-20101030095531-63vf9g84z5ol8qk9
- fixed bug in file chooser where "ok" button could remain disabled

Show diffs side-by-side

added added

removed removed

61
61
                setNextActivity( Merge.class );
62
62
 
63
63
                // create file chooser
64
 
                _file_chooser = new FileChooser();
 
64
                _file_chooser = new FileChooser( this );
65
65
                String[] extensions = { "vcf" };
66
66
                _file_chooser.setExtensions( extensions );
67
67
                _file_chooser.setDismissListener(
179
179
                        break;
180
180
 
181
181
                case DIALOG_FILECHOOSER:
182
 
                        ret = _file_chooser.onCreateDialog( this );
 
182
                        ret = _file_chooser.onCreateDialog();
183
183
                        break;
184
184
                }
185
185