/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-28 16:12:57 UTC
  • Revision ID: edam@waxworlds.org-20101028161257-9stn23tn7tvkkjno
- fixed bug where a file chooser wouldn't know it's context when the context was used

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