~ubuntu-branches/ubuntu/dapper/gedit/dapper

« back to all changes in this revision

Viewing changes to gedit/gedit-commands-search.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-03-16 19:04:03 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20060316190403-mai32coahx5atd1r
Tags: 2.14.1-0ubuntu1
* New upstream version:
  New features and fixes
  - do not open a new GdkDisplay for every window (Paolo Borelli)
  - bugfixes to the snippets plugin (Jesse Van Den Kieboom)
  - misc bugfixes
  New and updated translations
  - Lucas Rocha (pt_BR)
  - Dan Damian (ro)
  - Miloslav Trmac (cs)
  - Ole Laursen (da)
* debian/patches/02_autoconf.patch:
  - updated
* debian/watch:
  - update

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 * list of people on the gedit Team.
28
28
 * See the ChangeLog files for a list of changes.
29
29
 *
30
 
 * $Id: gedit-commands-search.c,v 1.7 2006/02/25 17:48:38 pborelli Exp $
 
30
 * $Id: gedit-commands-search.c,v 1.8 2006/03/13 17:58:41 pborelli Exp $
31
31
 */
32
32
 
33
33
#ifdef HAVE_CONFIG_H
390
390
 
391
391
        /* replace text may be "", we just delete */
392
392
        replace_entry_text = gedit_search_dialog_get_replace_text (dialog);
393
 
        g_return_if_fail ((search_entry_text) != NULL);
 
393
        g_return_if_fail ((replace_entry_text) != NULL);
394
394
 
395
395
        unescaped_search_text = gedit_utils_unescape_search_text (search_entry_text);
396
396
 
450
450
 
451
451
        /* replace text may be "", we just delete all occurrencies */
452
452
        replace_entry_text = gedit_search_dialog_get_replace_text (dialog);
453
 
        g_return_if_fail ((search_entry_text) != NULL);
 
453
        g_return_if_fail ((replace_entry_text) != NULL);
454
454
 
455
455
        match_case = gedit_search_dialog_get_match_case (dialog);
456
456
        entire_word = gedit_search_dialog_get_entire_word (dialog);