banshee r3188 - in trunk/banshee: . src/Core/Hyena.Gui src/Extensions/Banshee.DapCore src/Extensions/Banshee.DapCore/Banshee.DapCore



Author: alanmc
Date: Sat Feb  9 19:49:22 2008
New Revision: 3188
URL: http://svn.gnome.org/viewvc/banshee?rev=3188&view=rev

Log:
Updated the interface for the dap stuff again

Modified:
   trunk/banshee/ChangeLog
   trunk/banshee/src/Core/Hyena.Gui/Hyena.Gui.mdp
   trunk/banshee/src/Extensions/Banshee.DapCore/Banshee.DapCore/IDeviceClass.cs
   trunk/banshee/src/Extensions/Banshee.DapCore/Makefile.am

Modified: trunk/banshee/src/Core/Hyena.Gui/Hyena.Gui.mdp
==============================================================================
--- trunk/banshee/src/Core/Hyena.Gui/Hyena.Gui.mdp	(original)
+++ trunk/banshee/src/Core/Hyena.Gui/Hyena.Gui.mdp	Sat Feb  9 19:49:22 2008
@@ -38,7 +38,6 @@
     <File name="Hyena.Query.Gui/QueryTermBox.cs" subtype="Code" buildaction="Compile" />
     <File name="Hyena.Query.Gui/QueryValueEntry.cs" subtype="Code" buildaction="Compile" />
     <File name="Hyena.Query.Gui/StringQueryValueEntry.cs" subtype="Code" buildaction="Compile" />
-    <File name="Hyena.Data.Gui/ListView" subtype="Directory" buildaction="Compile" />
     <File name="Hyena.Data.Gui/ListView/ListView.cs" subtype="Code" buildaction="Compile" />
     <File name="Hyena.Data.Gui/ListView/ListView_Windowing.cs" subtype="Code" buildaction="Compile" />
     <File name="Hyena.Data.Gui/ListView/ListView_Rendering.cs" subtype="Code" buildaction="Compile" />

Modified: trunk/banshee/src/Extensions/Banshee.DapCore/Banshee.DapCore/IDeviceClass.cs
==============================================================================
--- trunk/banshee/src/Extensions/Banshee.DapCore/Banshee.DapCore/IDeviceClass.cs	(original)
+++ trunk/banshee/src/Extensions/Banshee.DapCore/Banshee.DapCore/IDeviceClass.cs	Sat Feb  9 19:49:22 2008
@@ -27,6 +27,7 @@
 //
 
 using System;
+using Banshee.Collection;
 
 namespace Banshee.Dap
 {
@@ -42,11 +43,11 @@
 		event EventHandler TrackUploaded;
 
 		
-		void DownloadTrack (object track);       // Should be TrackInfo, not 'object'
+		void DownloadTrack (TrackInfo track);       // Should be TrackInfo, not 'object'
 		void LoadTracks ();                      // Should be TrackInfo, not 'object'
-		void RemoveTrack (object track);         // Should be TrackInfo, not 'object'
-		void UpdateMetadata (object track);      // Should be TrackInfo, not 'object'
-		void UploadTrack (object track);         // Should be TrackInfo, not 'object'
+		void RemoveTrack (TrackInfo track);         // Should be TrackInfo, not 'object'
+		void UpdateMetadata (TrackInfo track);      // Should be TrackInfo, not 'object'
+		void UploadTrack (TrackInfo track);         // Should be TrackInfo, not 'object'
 
 		void Eject ();
 		void Initialize (object halDevice);   // Should be a Hal.Device, not 'object'

Modified: trunk/banshee/src/Extensions/Banshee.DapCore/Makefile.am
==============================================================================
--- trunk/banshee/src/Extensions/Banshee.DapCore/Makefile.am	(original)
+++ trunk/banshee/src/Extensions/Banshee.DapCore/Makefile.am	Sat Feb  9 19:49:22 2008
@@ -2,7 +2,7 @@
 TARGET = library
 LINK = $(REF_EXTENSION_DAPCORE)
 
-SOURCES = \
+SOURCES =  \
 	Banshee.DapCore/DapCore.cs \
 	Banshee.DapCore/HalCore.cs \
 	Banshee.DapCore/IDeviceClass.cs \
@@ -10,6 +10,9 @@
 	hal-sharp/Manager.cs \
 	hal-sharp/Volume.cs
 
+REFERENCES =  \
+	Banshee.Core
+	
 RESOURCES = Resources/Banshee.DapCore.addin.xml
 
 include $(top_srcdir)/build/build.mk



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