Author: bklaas
Date: Tue Apr 13 07:15:40 2010
New Revision: 8697

URL: http://svn.slimdevices.com/jive?rev=8697&view=rev
Log:
Fixed Bug: 16048
Description: QVGAbaseSkin needed to be a class of applet, not itself.
Good catch Michael-- that's why I cc:ed you on the bug :)

Modified:
    
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAbaseSkin/QVGAbaseSkinApplet.lua
    
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAlandscapeSkin/QVGAlandscapeSkinApplet.lua
    
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAportraitSkin/QVGAportraitSkinApplet.lua

Modified: 
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAbaseSkin/QVGAbaseSkinApplet.lua
URL: 
http://svn.slimdevices.com/jive/7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAbaseSkin/QVGAbaseSkinApplet.lua?rev=8697&r1=8696&r2=8697&view=diff
==============================================================================
--- 
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAbaseSkin/QVGAbaseSkinApplet.lua
 (original)
+++ 
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAbaseSkin/QVGAbaseSkinApplet.lua
 Tue Apr 13 07:15:40 2010
@@ -58,7 +58,7 @@
 
 
 module(..., Framework.constants)
-oo.class(_M, QVGAbaseSkinApplet)
+oo.class(_M, Applet)
 
 
 -- Define useful variables for this skin

Modified: 
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAlandscapeSkin/QVGAlandscapeSkinApplet.lua
URL: 
http://svn.slimdevices.com/jive/7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAlandscapeSkin/QVGAlandscapeSkinApplet.lua?rev=8697&r1=8696&r2=8697&view=diff
==============================================================================
--- 
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAlandscapeSkin/QVGAlandscapeSkinApplet.lua
 (original)
+++ 
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAlandscapeSkin/QVGAlandscapeSkinApplet.lua
 Tue Apr 13 07:15:40 2010
@@ -82,16 +82,12 @@
                        { 
                                style = 'nowplaying',
                                artworkSize = '320x320',
-                               --FIXME: self:string() does not work here
-                               --text = self:string('LARGE_ART'),
-                               text = 'Large artwork',
+                               text = self:string('LARGE_ART'),
                         },
                        {
                                style = 'nowplaying_small_art',
                                artworkSize = '143x143',
-                               --FIXME: self:string() does not work here
-                               --text = self:string('SMALL_ART'),
-                               text = 'Small artwork',
+                               text = self:string('SMALL_ART'),
                        },
                },
         }

Modified: 
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAportraitSkin/QVGAportraitSkinApplet.lua
URL: 
http://svn.slimdevices.com/jive/7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAportraitSkin/QVGAportraitSkinApplet.lua?rev=8697&r1=8696&r2=8697&view=diff
==============================================================================
--- 
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAportraitSkin/QVGAportraitSkinApplet.lua
 (original)
+++ 
7.5/trunk/squeezeplay/src/squeezeplay/share/applets/QVGAportraitSkin/QVGAportraitSkinApplet.lua
 Tue Apr 13 07:15:40 2010
@@ -84,16 +84,12 @@
                        {
                                style = 'nowplaying',
                                artworkSize = '240x240',
-                               --FIXME: self:string() does not work here
-                               --text = self:string('LARGE_ART'),
-                               text = 'Large artwork',
+                               text = self:string('LARGE_ART'),
                         },
                        {
                                style = 'nowplaying_small_art',
                                artworkSize = '200x200',
-                               --FIXME: self:string() does not work here
-                               --text = self:string('SMALL_ART'),
-                               text = 'Small artwork',
+                               text = self:string('SMALL_ART'),
                        },
                },
         }

_______________________________________________
Jive-checkins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/jive-checkins

Reply via email to