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

« back to all changes in this revision

Viewing changes to src/engine/db/db-context.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:
29
29
        return null;
30
30
    }
31
31
    
 
32
    internal int get_max_retry_msec() {
 
33
        return get_connection() != null ? get_connection().get_busy_timeout_msec() : Connection.DEFAULT_BUSY_TIMEOUT_MSEC;
 
34
    }
 
35
    
32
36
    protected inline int throw_on_error(string? method, int result, string? raw = null) throws DatabaseError {
33
37
        return Db.throw_on_error(this, method, result, raw);
34
38
    }