~timo-jyrinki/unity/ubuntu.5200

« back to all changes in this revision

Viewing changes to src/quicklauncher/quicklauncher-manager.vala

  • Committer: Gordon Allott
  • Date: 2009-12-16 13:25:32 UTC
  • mto: This revision was merged to the branch mainline in revision 45.
  • Revision ID: mail@gordallott.com-20091216132532-3zp0dlxqkqjnsmwf
performance logger support and boot chart generation script

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
      this.container.drag_motion.connect (on_drag_motion);
50
50
      this.container.drag_drop.connect (on_drag_drop);
51
51
      this.container.drag_data_received.connect (on_drag_data_received);
 
52
      
 
53
      Unity.TimelineLogger.get_default().end_process ("/Unity/Quicklauncher");
52
54
    }
53
55
    
54
56
    private bool on_drag_motion (Ctk.Actor actor, Gdk.DragContext context, 
166
168
 
167
169
    private void build_favorites () 
168
170
    {
 
171
      Unity.TimelineLogger.get_default().start_process ("/Unity/Quicklauncher/Favorites");
169
172
      var favorites = Launcher.Favorites.get_default ();
170
173
      
171
174
      unowned SList<string> favorite_list = favorites.get_favorites();
189
192
              add_view (view);
190
193
            }
191
194
        }
 
195
      
 
196
      Unity.TimelineLogger.get_default().end_process ("/Unity/Quicklauncher/Favorites");
192
197
    }
193
198
 
194
199