summaryrefslogtreecommitdiffstats
path: root/win/C#/Functions/RssReader.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-04-16 15:42:06 +0000
committersr55 <[email protected]>2008-04-16 15:42:06 +0000
commit1308ef2eb7db6c9db40abec7e5d184cf674ee64b (patch)
treea3c84b3a93662157789773d92469f439072e0e17 /win/C#/Functions/RssReader.cs
parentfd01e998d0c8e907417501e819fc711c7d4e6e5a (diff)
WinGUI:
- Moved appcast path from the RssReader.cs to the settings. Just makes it a bit easier to change for stable/unstable builds git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1422 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/RssReader.cs')
-rw-r--r--win/C#/Functions/RssReader.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/RssReader.cs b/win/C#/Functions/RssReader.cs
index 3d69a891f..a5643a301 100644
--- a/win/C#/Functions/RssReader.cs
+++ b/win/C#/Functions/RssReader.cs
@@ -28,7 +28,7 @@ namespace Handbrake.Functions
private string readRss()
{
- rssReader = new XmlTextReader("http://handbrake.fr/appcast.xml");
+ rssReader = new XmlTextReader(Properties.Settings.Default.appcast);
rssDoc = new XmlDocument();
rssDoc.Load(rssReader);