summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres G. Aragoneses <knocte@gmail.com>2013-03-07 22:45:28 +0000
committerAndres G. Aragoneses <knocte@gmail.com>2013-03-07 22:45:28 +0000
commit1f087562182fd8170836664ea27dfd6e5ba58d7f (patch)
tree7f81471958a6636f24fcd1e47db8a4e93a99aa49
parent662841e6a9cebfe53843ff7aef4977896d5299d4 (diff)
PodcastSourceContents: lowercase for ForcePosition, to be uniform
This ForcePosition virtual property is fully lowercase in other places (such as InternetRadioSourceContents class), so let's be uniform here. At some point we should use an enum instead of a string for this though. No change of behaviour in this commit.
-rw-r--r--src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastSourceContents.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastSourceContents.cs b/src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastSourceContents.cs
index d0dd45792..8bd591858 100644
--- a/src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastSourceContents.cs
+++ b/src/Extensions/Banshee.Podcasting/Banshee.Podcasting.Gui/PodcastSourceContents.cs
@@ -84,7 +84,7 @@ namespace Banshee.Podcasting.Gui
}
protected override string ForcePosition {
- get { return "Left"; }
+ get { return "left"; }
}
#region Implement ISourceContents