[vala/wip/attributes: 25/31] Drop destroy_function dependency from Struct.is_disposable
- From: Luca Bruno <lucabru src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/wip/attributes: 25/31] Drop destroy_function dependency from Struct.is_disposable
- Date: Fri, 22 Jul 2011 10:17:44 +0000 (UTC)
commit c1ba0503e962aa103957fd3ad2efbe9783439f49
Author: Luca Bruno <lucabru src gnome org>
Date: Sat Jul 9 13:17:26 2011 +0200
Drop destroy_function dependency from Struct.is_disposable
vala/valastruct.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/vala/valastruct.vala b/vala/valastruct.vala
index c5178b9..443dc04 100644
--- a/vala/valastruct.vala
+++ b/vala/valastruct.vala
@@ -805,7 +805,7 @@ public class Vala.Struct : TypeSymbol {
}
public bool is_disposable () {
- if (destroy_function != null) {
+ if (get_attribute_string ("CCode", "destroy_function") != null) {
return true;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]