~ubuntu-branches/ubuntu/saucy/geary/saucy-updates

« back to all changes in this revision

Viewing changes to src/engine/imap-db/outbox/smtp-outbox-folder-properties.vala

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-03-14 13:48:23 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130314134823-gyk5av1g508zyj8a
Tags: 0.3.0~pr1-0ubuntu1
New upstream version (FFE lp: #1154316), supports multiple account as
well as full conversation views with inline replies

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2013 Yorba Foundation
 
2
 *
 
3
 * This software is licensed under the GNU Lesser General Public License
 
4
 * (version 2.1 or later).  See the COPYING file in this distribution.
 
5
 */
 
6
 
 
7
private class Geary.SmtpOutboxFolderProperties : Geary.FolderProperties {
 
8
    public SmtpOutboxFolderProperties(int total, int unread) {
 
9
        base (total, unread, Trillian.FALSE, Trillian.FALSE, Trillian.TRUE);
 
10
    }
 
11
    
 
12
    public void set_total(int total) {
 
13
        this.email_total = total;
 
14
    }
 
15
}
 
16