~ubuntu-branches/ubuntu/utopic/gjs/utopic

« back to all changes in this revision

Viewing changes to modules/overrides/GLib.js

  • Committer: Package Import Robot
  • Author(s): Tim Lunn
  • Date: 2014-08-13 09:45:01 UTC
  • mfrom: (1.10.17)
  • Revision ID: package-import@ubuntu.com-20140813094501-hd8g1n9c9as8ps1w
Tags: 1.41.4-0ubuntu1
* New upstream release
* debian/patches:
  - git_respect_ownership_transfer.patch:  Drop, included in new version
  - revert-bump-gi-requirement.patch: Relax dep, g-i 1.40.0-2ubuntu2 includes
    the ownership transfer patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
200
200
        return variant.get_variant();
201
201
    case 'm':
202
202
        let val = variant.get_maybe();
203
 
        if (deep)
 
203
        if (deep && val)
204
204
            return _unpack_variant(val, deep);
205
205
        else
206
206
            return val;