code cleanup
[embrace.git] / bin / embrace
index 22e9be6513d06d81cc36ac71c86887a326eb29f5..5673f88c9a701cd72204b8cf822134d70c967e8a 100755 (executable)
@@ -117,9 +117,9 @@ module Embrace
                        @label = Evas::Text.new(evas)
 
                        @objects = [@img, @label]
+                       @objects.each { |o| add_member(o) }
 
                        @img.set_color(255, 255, 255, 0)
-                       @label.set_color(255, 255, 255, 0)
                        @label.set_color(255, 0, 0, 0)
 
                        @img.set_file(ICON_FILE)
@@ -205,6 +205,8 @@ module Embrace
                        @bg = Evas::Rectangle.new(evas)
                        @bg.set_color(0, 0, 0, 255)
 
+                       add_member(@bg)
+
                        @icons = FixedSizeArray.new(MAX_ICONS)
                        @about_to_add = []
                        @animators = []
@@ -273,10 +275,6 @@ module Embrace
                        end
                end
 
-               def length
-                       @icons.nitems
-               end
-
                # smart callbacks
                def on_show
                        @bg.show