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

« back to all changes in this revision

Viewing changes to src/client/geary-args.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:
20
20
    { "log-sql", 0, 0, OptionArg.NONE, ref log_sql, N_("Log database queries (generates lots of messages)"), null },
21
21
    /// "Normalization" can also be called "synchronization"
22
22
    { "log-folder-normalization", 0, 0, OptionArg.NONE, ref log_folder_normalization, N_("Log folder normalization"), null },
 
23
    { "inspector", 'i', 0, OptionArg.NONE, ref inspector, N_("Allow inspection of WebView"), null },
23
24
    { "version", 'V', 0, OptionArg.NONE, ref version, N_("Display program version"), null },
24
25
    { null }
25
26
};
32
33
public bool log_periodic = false;
33
34
public bool log_sql = false;
34
35
public bool log_folder_normalization = false;
 
36
public bool inspector = false;
35
37
public bool version = false;
36
38
 
37
39
public int parse(string[] args) {