~ubuntu-branches/ubuntu/precise/evolution/precise

« back to all changes in this revision

Viewing changes to widgets/table/e-table-search.c

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-06-24 00:27:53 UTC
  • mfrom: (1.1.80 upstream)
  • Revision ID: james.westby@ubuntu.com-20110624002753-2vh1vjavlya7r103
Tags: 3.1.2-0ubuntu1
* New upstream release 3.1.2.
* debian/control: adjust Build-Depends to match new upstream requirements for
  the new release.
* debian/control: update evolution and evolution-dev Depends to require the
  right versions of e-d-s (>= 3.1, << 3.2), and drop libunique-3.0-dev.
* debian/control,
  debian/evolution.install: remove groupwise-features from the plugin list,
  it's now split out into a separate module.
* debian/patches/03_lpi.patch: refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 *
21
21
 */
22
22
 
 
23
#ifdef HAVE_CONFIG_H
23
24
#include <config.h>
 
25
#endif
24
26
 
25
27
#include <string.h>
26
28
 
183
185
        character_utf8[g_unichar_to_utf8 (character, character_utf8)] = 0;
184
186
 
185
187
        temp_string = g_strdup_printf ("%s%s", ets->priv->search_string, character_utf8);
186
 
        if (e_table_search_search (ets, temp_string,
187
 
                                   ets->priv->last_character != 0 ? E_TABLE_SEARCH_FLAGS_CHECK_CURSOR_FIRST : 0)) {
 
188
        if (e_table_search_search (
 
189
                        ets, temp_string,
 
190
                        ets->priv->last_character != 0 ?
 
191
                        E_TABLE_SEARCH_FLAGS_CHECK_CURSOR_FIRST : 0)) {
188
192
                g_free (ets->priv->search_string);
189
193
                ets->priv->search_string = temp_string;
190
194
                add_timeout (ets);