~ubuntu-branches/ubuntu/trusty/rygel/trusty

« back to all changes in this revision

Viewing changes to src/rygel/rygel-gst-utils.vala

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson
  • Date: 2011-12-16 15:21:25 UTC
  • mfrom: (14.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20111216152125-qgn31dkfmhouhrf0
Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        return element;
43
43
    }
44
44
 
 
45
    public static void post_error (Element dest, Error error) {
 
46
        Message msg = new Message.error (dest, error, error.message);
 
47
        dest.post_message (msg);
 
48
    }
 
49
 
45
50
    public static ClockTime time_from_string (string str) {
46
51
        uint64 hours, minutes, seconds;
47
52