[banshee] [Banshe.Services] Make some SmartPlaylist methods private



commit 305d30ee5b910672d27fe19503081541fa1d596b
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Wed Nov 3 22:27:48 2010 -0500

    [Banshe.Services] Make some SmartPlaylist methods private

 .../Banshee.SmartPlaylist/SmartPlaylistSource.cs   |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/Core/Banshee.Services/Banshee.SmartPlaylist/SmartPlaylistSource.cs b/src/Core/Banshee.Services/Banshee.SmartPlaylist/SmartPlaylistSource.cs
index 186861e..53a5717 100644
--- a/src/Core/Banshee.Services/Banshee.SmartPlaylist/SmartPlaylistSource.cs
+++ b/src/Core/Banshee.Services/Banshee.SmartPlaylist/SmartPlaylistSource.cs
@@ -575,7 +575,7 @@ namespace Banshee.SmartPlaylist
             StopTimer();
         }
 
-        public static void StartTimer (SmartPlaylistSource playlist)
+        private static void StartTimer (SmartPlaylistSource playlist)
         {
             // Check if the playlist is time-dependent, and if it is,
             // start the auto-refresh timer.
@@ -589,7 +589,7 @@ namespace Banshee.SmartPlaylist
             }
         }
 
-        public static void StopTimer ()
+        private static void StopTimer ()
         {
             // If the timer is going and there are no more time-dependent playlists,
             // stop the timer.
@@ -624,7 +624,7 @@ namespace Banshee.SmartPlaylist
             return true;
         }
 
-        public static void SortPlaylists () {
+        private static void SortPlaylists () {
             playlists.Sort (new DependencyComparer ());
         }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]