[tuxdroid-svn] r5082 - in software_suite_v3/software/plugin/plugin-programsTv/trunk/plugin-programs
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-07-08 10:19:21
|
Author: jerome
Date: 2009-07-08 12:19:07 +0200 (Wed, 08 Jul 2009)
New Revision: 5082
Modified:
software_suite_v3/software/plugin/plugin-programsTv/trunk/plugin-programsTv/resources/plugin.xml
software_suite_v3/software/plugin/plugin-programsTv/trunk/plugin-programsTv/src/com/kysoh/tvPrograms/plugin/PluginStart.java
Log:
* Fixed 'flandre' ==> 'Vlaanderen'
Modified: software_suite_v3/software/plugin/plugin-programsTv/trunk/plugin-programsTv/resources/plugin.xml
===================================================================
--- software_suite_v3/software/plugin/plugin-programsTv/trunk/plugin-programsTv/resources/plugin.xml 2009-07-08 10:14:30 UTC (rev 5081)
+++ software_suite_v3/software/plugin/plugin-programsTv/trunk/plugin-programsTv/resources/plugin.xml 2009-07-08 10:19:07 UTC (rev 5082)
@@ -20,7 +20,7 @@
category="Options"
name="countr"
description="Select a country"
- type="enum(France, Flandre, Wallonnie, Espana, Deutschland, Nederland, United Kingdom)"
+ type="enum(France, Vlaanderen, Wallonnie, Espana, Deutschland, Nederland, United Kingdom)"
defaultValue="France" />
<parameter
category="Options"
Modified: software_suite_v3/software/plugin/plugin-programsTv/trunk/plugin-programsTv/src/com/kysoh/tvPrograms/plugin/PluginStart.java
===================================================================
--- software_suite_v3/software/plugin/plugin-programsTv/trunk/plugin-programsTv/src/com/kysoh/tvPrograms/plugin/PluginStart.java 2009-07-08 10:14:30 UTC (rev 5081)
+++ software_suite_v3/software/plugin/plugin-programsTv/trunk/plugin-programsTv/src/com/kysoh/tvPrograms/plugin/PluginStart.java 2009-07-08 10:19:07 UTC (rev 5082)
@@ -50,7 +50,7 @@
new PluginFr().main(arguments, this.configuration());
}
- else if(country.equalsIgnoreCase("flandre"))
+ else if(country.equalsIgnoreCase("Vlaanderen"))
{
this.configuration().setChannel(this.configuration().getFlandreChannel());
new PluginBeDu().main(arguments, this.configuration());
|