~indicator-applet-developers/ubuntu/precise/indicator-appmenu/upstream

« back to all changes in this revision

Viewing changes to src/hudappindicatorsource.c

  • Committer: Charles Kerr
  • Date: 2012-04-05 16:13:48 UTC
  • mfrom: (2.121.46 release)
  • mto: This revision was merged to the branch mainline in revision 219.
  • Revision ID: charles.kerr@canonical.com-20120405161348-h081r28vwzd9m38d
Tags: upstream-0.3.97
ImportĀ upstreamĀ versionĀ 0.3.97

Show diffs side-by-side

added added

removed removed

Lines of Context:
371
371
}
372
372
 
373
373
static void
374
 
hud_app_indicator_source_search (HudSource   *hud_source,
375
 
                                 GPtrArray   *results_array,
376
 
                                 const gchar *search_string)
 
374
hud_app_indicator_source_search (HudSource    *hud_source,
 
375
                                 GPtrArray    *results_array,
 
376
                                 HudTokenList *search_tokens)
377
377
{
378
378
  HudAppIndicatorSource *source = HUD_APP_INDICATOR_SOURCE (hud_source);
379
379
  GSequenceIter *iter;
382
382
 
383
383
  while (!g_sequence_iter_is_end (iter))
384
384
    {
385
 
      hud_source_search (g_sequence_get (iter), results_array, search_string);
 
385
      hud_source_search (g_sequence_get (iter), results_array, search_tokens);
386
386
      iter = g_sequence_iter_next (iter);
387
387
    }
388
388
}