~leprechaun-team/+junk/unity-use-patches

« back to all changes in this revision

Viewing changes to unity-private/utils.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-09-09 19:13:29 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20100909191329-j3odkmn02roj91b1
Tags: 0.2.36-0ubuntu1
* New upstream release:
  - Fix width of home-button on panel, so groove aligns with right edge of
    launcher, fixes (LP: #630031)
  - migration script to transition first time new people to unity
    (LP: #622146)
  - Quicklist name disappearing (LP: #627666)
* debian/unity.install:
  - install libexec in unity package (for migration tool)
* debian/libunity0.symbols:
  - update symbol

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* utils.c generated by valac 0.9.7, the Vala compiler
 
1
/* utils.c generated by valac, the Vala compiler
2
2
 * generated from utils.vala, do not modify */
3
3
 
4
4
/*
56
56
 
57
57
char* utils_strip_characters (const char* text, const char* replace_text, const char* match_regex, const char* replace_regex) {
58
58
        char* result = NULL;
 
59
        GError * _inner_error_;
59
60
        char* ret;
60
61
        gboolean matching;
61
62
        GMatchInfo* info;
62
 
        GError * _inner_error_ = NULL;
63
63
        g_return_val_if_fail (text != NULL, NULL);
64
64
        g_return_val_if_fail (replace_text != NULL, NULL);
65
65
        g_return_val_if_fail (match_regex != NULL, NULL);
66
66
        g_return_val_if_fail (replace_regex != NULL, NULL);
 
67
        _inner_error_ = NULL;
67
68
        ret = g_strdup ("");
68
69
        matching = FALSE;
69
70
        info = NULL;
70
71
        {
71
72
                GRegex* regex;
 
73
                GMatchInfo* _tmp4_;
 
74
                gboolean _tmp3_;
72
75
                GMatchInfo* _tmp2_ = NULL;
73
 
                gboolean _tmp3_;
74
 
                GMatchInfo* _tmp4_;
75
76
                regex = NULL;
76
77
                {
77
78
                        GRegex* _tmp0_;