diff --git a/ruamoko/lib/ListNode.r b/ruamoko/lib/ListNode.r index aae12a1c5..495f8f944 100644 --- a/ruamoko/lib/ListNode.r +++ b/ruamoko/lib/ListNode.r @@ -45,6 +45,7 @@ data = [anObject retain]; nextNode = nil; + return self; } - (void) dealloc diff --git a/ruamoko/lib/PropertyList.r b/ruamoko/lib/PropertyList.r index 047eeac74..cc349c47c 100644 --- a/ruamoko/lib/PropertyList.r +++ b/ruamoko/lib/PropertyList.r @@ -77,7 +77,7 @@ return self; } --dealloc +- (void) dealloc { if (own) PL_Free (item); diff --git a/ruamoko/lib/Stack.r b/ruamoko/lib/Stack.r index ea41b44ac..aeb3c7b1d 100644 --- a/ruamoko/lib/Stack.r +++ b/ruamoko/lib/Stack.r @@ -73,7 +73,7 @@ - (integer) count { - + return stackSize; } @end