~attente/glib/gicon-upstream

« back to all changes in this revision

Viewing changes to glib/gtestutils.c

  • Committer: Package Import Robot
  • Author(s): Iain Lane, Josselin Mouette, Iain Lane
  • Date: 2012-10-17 11:51:14 UTC
  • mfrom: (172.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20121017115114-gqog9lavags5afi1
Tags: 2.34.1-1
[ Josselin Mouette ]
* Require libelfg0-dev, not libelf-dev which has nothing to do with 
  it.

[ Iain Lane ]
* New upstream release
  + GTimeZone support for zoneinfo version 1
  + Leak in glib-compile-resources
  + g_settings_bind: use canonical property name
  + Port gio tests from pygobject to pygi
* Switch python-gobject-2 BD to python-gi, folowing porting of tests. 
* debian/patches/50_git_gmenuexporter_allow_null_bus_on_name_vanished.patch:
  Cherry-pick upstream patch to fix crash when GBusNameVanishedCallback is
  called with a NULL GDBusConnection. (LP: #1044322)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1973
1973
 * @str1: (allow-none): a C string or %NULL
1974
1974
 * @str2: (allow-none): another C string or %NULL
1975
1975
 *
1976
 
 * Compares @str1 and @str2 like strcmp(). Handles %NULL 
 
1976
 * Compares @str1 and @str2 like strcmp(). Handles %NULL
1977
1977
 * gracefully by sorting it before non-%NULL strings.
1978
1978
 * Comparing two %NULL pointers returns 0.
1979
1979
 *
1980
 
 * Returns: -1, 0 or 1, if @str1 is <, == or > than @str2.
 
1980
 * Returns: an integer less than, equal to, or greater than zero, if @str1 is <, == or > than @str2.
1981
1981
 *
1982
1982
 * Since: 2.16
1983
1983
 */