~ubuntu-branches/ubuntu/oneiric/haxe/oneiric

« back to all changes in this revision

Viewing changes to haxe/std/mtwin/mail/imap/Message.hx

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2008-06-15 11:04:09 UTC
  • mfrom: (2.1.6 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080615110409-7pyykgwmk5v0cues
Tags: 1:1.19-3
* Remove bashism in script.
  (Closes: #484390)
* Upgrade to Policy 3.8.0 by including a README.source explaining how to
  use dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
                addFlag("\\Deleted");
75
75
        }
76
76
 
 
77
        public function delete(){
 
78
                markAsDeleted();
 
79
                mailbox.expunge();
 
80
        }
 
81
 
77
82
        public function addFlag( flag : String ){
78
83
                var cnx = mailbox.select();
79
84
                cnx.storeFlags(Single(uid), [flag], Add, true, false );