~audio-recorder/audio-recorder/trunk

« back to all changes in this revision

Viewing changes to src/about.c

  • Committer: Osmo Antero
  • Date: 2015-02-06 14:13:34 UTC
  • Revision ID: osmoma@gmail.com-20150206141334-ifaeqyan4ygxo49g
Updated README and INSTALL files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 *
9
9
 * This library is distributed in the hope that it will be useful,
10
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
12
 * See the GNU Library General Public License 3 for more details.
13
13
 *
14
14
 * You should have received a copy of the GNU Library General Public
67
67
    // Did we find the license text?
68
68
    if (!ret || length <= 0) {
69
69
        g_free(contents);
70
 
        contents = g_strdup_printf("%s%s", 
71
 
            _("This product is released under terms of GPL, GNU GENERAL PUBLIC LICENSE v3.\n"),
72
 
            _("Please see http://www.gnu.org/licenses/gpl-3.0.txt for more details."));
 
70
        contents = g_strdup_printf("%s%s",
 
71
                                   _("This product is released under terms of GPL, GNU GENERAL PUBLIC LICENSE v3.\n"),
 
72
                                   _("Please see http://www.gnu.org/licenses/gpl-3.0.txt for more details."));
73
73
    }
74
74
    return contents;
75
75
}