diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2013-09-25 07:58:49 +0200 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2013-09-25 13:26:10 +0200 |
commit | 0b893509b821276b7c5c7baf3cd3f75f94061099 (patch) | |
tree | 19536a5a8eb086723b9c5e8c429c1dc19bd98d59 /mediainfo | |
parent | 299d1c8b88c40299b08fccdac90a32de6711496f (diff) |
mi-info: mark nullable parameters as such
Diffstat (limited to 'mediainfo')
-rw-r--r-- | mediainfo/src/mi-info.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mediainfo/src/mi-info.vala b/mediainfo/src/mi-info.vala index 738d689..c86ca9b 100644 --- a/mediainfo/src/mi-info.vala +++ b/mediainfo/src/mi-info.vala @@ -719,7 +719,7 @@ public class MediaInfo.Info : Box table.attach (label, 1, 2, row, row+1, fill_exp, 0, 3, 1); } - private void add_table_row_for_string (Table table, uint row, string title, string str) { + private void add_table_row_for_string (Table table, uint row, string title, string? str) { AttachOptions fill = AttachOptions.FILL; AttachOptions fill_exp = AttachOptions.EXPAND|AttachOptions.FILL; @@ -732,7 +732,7 @@ public class MediaInfo.Info : Box table.attach (label, 1, 2, row, row+1, fill_exp, 0, 3, 1); } - private bool add_table_row_for_structure (Table table, uint row, Structure s) { + private bool add_table_row_for_structure (Table table, uint row, Structure? s) { if (s == null) return false; @@ -750,7 +750,7 @@ public class MediaInfo.Info : Box return true; } - private bool add_table_row_for_taglist (Table table, uint row, TagList t) { + private bool add_table_row_for_taglist (Table table, uint row, TagList? t) { if (t == null) return false; |