/android/export-contacts

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

« back to all changes in this revision

Viewing changes to src/org/waxworlds/edam/exportcontacts/Exporter.java

  • Committer: edam
  • Date: 2012-04-24 11:21:50 UTC
  • Revision ID: tim@ed.am-20120424112150-5a48rjoa9xpn1t2k
continued renaming contact readers to accessors

Show diffs side-by-side

added added

removed removed

265
265
        protected void exportContacts() throws AbortExportException
266
266
        {
267
267
                // set up a contact reader
268
 
                ContactReader contact_reader = new ContactsContactReader( _doit, this );
 
268
                ContactAccessor contact_reader =
 
269
                        new ContactsContactAccessor( _doit, this );
269
270
                int num_contacts = contact_reader.getNumContacts();
270
271
                if( num_contacts == 0 )
271
272
                        showError( R.string.error_nothingtodo );