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

« back to all changes in this revision

Viewing changes to src/client/sidebar/sidebar-entry.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:
48
48
    public abstract bool is_user_renameable();
49
49
}
50
50
 
 
51
public interface Sidebar.EmphasizableEntry : Sidebar.Entry {
 
52
    public signal void is_emphasized_changed(bool emphasized);
 
53
    
 
54
    public abstract bool is_emphasized();
 
55
}
 
56
 
51
57
public interface Sidebar.DestroyableEntry : Sidebar.Entry {
52
58
    public abstract void destroy_source();
53
59
}