summaryrefslogtreecommitdiffstats
path: root/tools/wixl/msi.vala
diff options
context:
space:
mode:
Diffstat (limited to 'tools/wixl/msi.vala')
-rw-r--r--tools/wixl/msi.vala8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/wixl/msi.vala b/tools/wixl/msi.vala
index e2b5490..9c2e40e 100644
--- a/tools/wixl/msi.vala
+++ b/tools/wixl/msi.vala
@@ -740,6 +740,14 @@ namespace Wixl {
public void set_comments (string value) throws GLib.Error {
set_property (Libmsi.Property.COMMENTS, value);
}
+
+ public string? get_comments () {
+ try {
+ return properties.get_string (Libmsi.Property.COMMENTS);
+ } catch (GLib.Error err) {
+ return null;
+ }
+ }
}
class MsiDatabase: Object {