~sethj/ubuntu/wily/unity/fix-for-1445595

« back to all changes in this revision

Viewing changes to launcher/SwitcherModel.h

  • Committer: Daniel van Vugt
  • Date: 2012-10-11 01:44:15 UTC
  • mfrom: (2826 trunk)
  • mto: This revision was merged to the branch mainline in revision 2847.
  • Revision ID: daniel.van.vugt@canonical.com-20121011014415-jvudq1d7bn1z268j
Merge latest lp:unity and fix a conflict

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
  void NextDetail();
81
81
  void PrevDetail();
82
82
 
83
 
  void Select(launcher::AbstractLauncherIcon::Ptr selection);
 
83
  void Select(launcher::AbstractLauncherIcon::Ptr const& selection);
84
84
  void Select(unsigned int index);
85
85
 
86
 
  sigc::signal<void, launcher::AbstractLauncherIcon::Ptr> selection_changed;
 
86
  sigc::signal<void, launcher::AbstractLauncherIcon::Ptr const&> selection_changed;
87
87
 
88
88
protected:
89
89
  // Introspectable methods
91
91
  void AddProperties(GVariantBuilder* builder);
92
92
 
93
93
private:
94
 
 
95
 
  static bool CompareWindowsByActive (guint32 first, guint32 second);
96
 
 
97
94
  Base             _inner;
98
95
  unsigned int     _index;
99
96
  unsigned int     _last_index;