[tuxdroid-svn] r4921 - in software_suite_v3/smart-core/smart-server/trunk/util/applicationserver:
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-06-28 21:12:33
|
Author: remi
Date: 2009-06-28 23:12:24 +0200 (Sun, 28 Jun 2009)
New Revision: 4921
Modified:
software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/gadget/GadgetsContainer.py
software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/ugc/UgcContainer.py
Log:
* fixed bug with the retrieving of some locals values
Modified: software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/gadget/GadgetsContainer.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/gadget/GadgetsContainer.py 2009-06-28 21:11:28 UTC (rev 4920)
+++ software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/gadget/GadgetsContainer.py 2009-06-28 21:12:24 UTC (rev 4921)
@@ -64,7 +64,7 @@
"""Get the current container country.
@return: A string.
"""
- self.__pluginsContainer.getCountry()
+ return self.__pluginsContainer.getCountry()
# --------------------------------------------------------------------------
# Get the current container locutor.
@@ -73,7 +73,7 @@
"""Get the current container locutor.
@return: A string.
"""
- self.__pluginsContainer.getLocutor()
+ return self.__pluginsContainer.getLocutor()
# --------------------------------------------------------------------------
# Get the current container pitch.
@@ -82,7 +82,7 @@
"""Get the current container pitch.
@return: An integer.
"""
- self.__pluginsContainer.getPitch()
+ return self.__pluginsContainer.getPitch()
# --------------------------------------------------------------------------
# Generate a single name.
Modified: software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/ugc/UgcContainer.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/ugc/UgcContainer.py 2009-06-28 21:11:28 UTC (rev 4920)
+++ software_suite_v3/smart-core/smart-server/trunk/util/applicationserver/ugc/UgcContainer.py 2009-06-28 21:12:24 UTC (rev 4921)
@@ -63,7 +63,7 @@
"""Get the current container country.
@return: A string.
"""
- self.__gadgetsContainer.getCountry()
+ return self.__gadgetsContainer.getCountry()
# --------------------------------------------------------------------------
# Get the current container locutor.
@@ -72,7 +72,7 @@
"""Get the current container locutor.
@return: A string.
"""
- self.__gadgetsContainer.getLocutor()
+ return self.__gadgetsContainer.getLocutor()
# --------------------------------------------------------------------------
# Get the current container pitch.
@@ -81,7 +81,7 @@
"""Get the current container pitch.
@return: An integer.
"""
- self.__gadgetsContainer.getPitch()
+ return self.__gadgetsContainer.getPitch()
# --------------------------------------------------------------------------
# Generate a single name.
|