[banshee/dbus-sharp: 1/3] dbus: Replace NDesk.DBus references by dbus-sharp (bgo#629844)
- From: Alexander Kojevnikov <alexk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [banshee/dbus-sharp: 1/3] dbus: Replace NDesk.DBus references by dbus-sharp (bgo#629844)
- Date: Thu, 23 Sep 2010 01:16:33 +0000 (UTC)
commit 64a7e2c9fee451e70d0c1e44720a217b11d62932
Author: Jérémie Laval <jeremie laval gmail com>
Date: Thu Sep 23 10:36:51 2010 +1000
dbus: Replace NDesk.DBus references by dbus-sharp (bgo#629844)
Signed-off-by: Alexander Kojevnikov <alexander kojevnikov com>
build/build.environment.mk | 4 ++--
build/m4/banshee/dbus.m4 | 10 +++++-----
configure.ac | 4 ++--
.../GnomeScreensaverManager.cs | 2 +-
.../Banshee.Hal/Banshee.HalBackend/DkDisk.cs | 2 +-
src/Backends/Banshee.Hal/Hal/Device.cs | 2 +-
src/Backends/Banshee.Hal/Hal/Manager.cs | 2 +-
src/Backends/Banshee.Hal/Hal/Volume.cs | 2 +-
src/Clients/Beroe/Beroe/IndexerClient.cs | 2 +-
src/Clients/Booter/Booter/Entry.cs | 2 +-
src/Clients/Halie/Halie/Client.cs | 2 +-
.../IndexerClient.cs | 2 +-
.../ICollectionIndexer.cs | 2 +-
.../ICollectionIndexerService.cs | 2 +-
.../Banshee.CollectionIndexer/Demo/RemoteClient.cs | 2 +-
.../Banshee.Core/Banshee.Collection/ITrackInfo.cs | 2 +-
.../CollectionIndexerService.cs | 2 +-
.../ICollectionIndexer.cs | 2 +-
.../ICollectionIndexerService.cs | 2 +-
.../Banshee.Collection.Indexer/IIndexerClient.cs | 2 +-
.../Banshee.Collection/IExportableModel.cs | 2 +-
.../Banshee.MediaEngine/IPlayerEngineService.cs | 2 +-
.../Banshee.Networking/NetworkManager.cs | 2 +-
.../Banshee.Services/Banshee.Networking/Wicd.cs | 2 +-
.../IPlaybackControllerService.cs | 4 ++--
.../Banshee.ServiceStack/DBusCommandService.cs | 2 +-
.../Banshee.ServiceStack/DBusConnection.cs | 2 +-
.../Banshee.ServiceStack/DBusServiceManager.cs | 2 +-
.../Banshee.Sources/IFilterableSource.cs | 2 +-
.../Banshee.Services/Banshee.Sources/ISource.cs | 2 +-
.../Banshee.Sources/ISourceManager.cs | 2 +-
.../Banshee.Sources/ITrackModelSource.cs | 2 +-
.../Banshee.Gui/IClientWindow.cs | 2 +-
.../Banshee.Gui/IGlobalUIActions.cs | 2 +-
.../Banshee.Mpris/Banshee.Mpris/IMediaPlayer.cs | 2 +-
.../Banshee.Mpris/Banshee.Mpris/IPlayer.cs | 2 +-
.../Banshee.Mpris/Banshee.Mpris/MediaPlayer.cs | 2 +-
.../Banshee.Mpris/Banshee.Mpris/MprisService.cs | 2 +-
.../MultimediaKeysService.cs | 2 +-
.../Notifications/Notification.cs | 2 +-
.../Notifications/Notifications.cs | 2 +-
.../Banshee.PlayQueue/IPlayQueue.cs | 2 +-
.../Banshee.Torrent/TorrentFileDownloadTask.cs | 2 +-
.../Banshee.Torrent/TorrentService.cs | 2 +-
44 files changed, 51 insertions(+), 51 deletions(-)
---
diff --git a/build/build.environment.mk b/build/build.environment.mk
index a2bd1aa..19a9350 100644
--- a/build/build.environment.mk
+++ b/build/build.environment.mk
@@ -19,8 +19,8 @@ LINK_GCONF = $(GCONFSHARP_LIBS)
LINK_GIO = $(GTKSHARP_BEANS_LIBS) $(GIOSHARP_LIBS)
LINK_GKEYFILE = $(GKEYFILE_SHARP_LIBS)
LINK_GUDEV = $(GUDEV_SHARP_LIBS)
-LINK_DBUS = $(NDESK_DBUS_LIBS) $(NDESK_DBUS_GLIB_LIBS)
-LINK_DBUS_NO_GLIB = $(NDESK_DBUS_LIBS)
+LINK_DBUS = $(DBUS_SHARP_LIBS) $(DBUS_SHARP_GLIB_LIBS)
+LINK_DBUS_NO_GLIB = $(DBUS_SHARP_LIBS)
LINK_TAGLIB = $(TAGLIB_SHARP_LIBS)
LINK_IPOD = $(IPODSHARP_LIBS)
LINK_BOO = $(BOO_LIBS)
diff --git a/build/m4/banshee/dbus.m4 b/build/m4/banshee/dbus.m4
index d74120c..3b8579e 100644
--- a/build/m4/banshee/dbus.m4
+++ b/build/m4/banshee/dbus.m4
@@ -1,9 +1,9 @@
-AC_DEFUN([BANSHEE_CHECK_NDESK_DBUS],
+AC_DEFUN([BANSHEE_CHECK_DBUS_SHARP],
[
- PKG_CHECK_MODULES(NDESK_DBUS_GLIB, ndesk-dbus-glib-1.0 >= 0.3)
- AC_SUBST(NDESK_DBUS_GLIB_LIBS)
+ PKG_CHECK_MODULES(DBUS_SHARP_GLIB, dbus-sharp-glib-1.0 >= 0.5)
+ AC_SUBST(DBUS_SHARP_GLIB_LIBS)
- PKG_CHECK_MODULES(NDESK_DBUS, ndesk-dbus-1.0 >= 0.5)
- AC_SUBST(NDESK_DBUS_LIBS)
+ PKG_CHECK_MODULES(DBUS_SHARP, dbus-sharp-1.0 >= 0.7)
+ AC_SUBST(DBUS_SHARP_LIBS)
])
diff --git a/configure.ac b/configure.ac
index dde5fe1..8d5e475 100644
--- a/configure.ac
+++ b/configure.ac
@@ -99,8 +99,8 @@ else
fi
AC_SUBST(BANSHEE_DESKTOP_NAME)
-dnl NDesk DBus libraries
-BANSHEE_CHECK_NDESK_DBUS
+dnl DBus Sharp libraries
+BANSHEE_CHECK_DBUS_SHARP
dnl Mono.Addins libraries
BANSHEE_CHECK_MONO_ADDINS
diff --git a/src/Backends/Banshee.Gnome/Banshee.GnomeBackend/GnomeScreensaverManager.cs b/src/Backends/Banshee.Gnome/Banshee.GnomeBackend/GnomeScreensaverManager.cs
index 17ceefc..031feb9 100644
--- a/src/Backends/Banshee.Gnome/Banshee.GnomeBackend/GnomeScreensaverManager.cs
+++ b/src/Backends/Banshee.Gnome/Banshee.GnomeBackend/GnomeScreensaverManager.cs
@@ -26,7 +26,7 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
-using NDesk.DBus;
+using DBus;
using Mono.Unix;
using Banshee.PlatformServices;
diff --git a/src/Backends/Banshee.Hal/Banshee.HalBackend/DkDisk.cs b/src/Backends/Banshee.Hal/Banshee.HalBackend/DkDisk.cs
index 0843377..ce08dea 100644
--- a/src/Backends/Banshee.Hal/Banshee.HalBackend/DkDisk.cs
+++ b/src/Backends/Banshee.Hal/Banshee.HalBackend/DkDisk.cs
@@ -28,7 +28,7 @@
using System;
-using NDesk.DBus;
+using DBus;
namespace Banshee.HalBackend
{
diff --git a/src/Backends/Banshee.Hal/Hal/Device.cs b/src/Backends/Banshee.Hal/Hal/Device.cs
index e284481..9fe9766 100644
--- a/src/Backends/Banshee.Hal/Hal/Device.cs
+++ b/src/Backends/Banshee.Hal/Hal/Device.cs
@@ -30,7 +30,7 @@ using System;
using System.Collections;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
namespace Hal
{
diff --git a/src/Backends/Banshee.Hal/Hal/Manager.cs b/src/Backends/Banshee.Hal/Hal/Manager.cs
index 218a965..ed2c82a 100644
--- a/src/Backends/Banshee.Hal/Hal/Manager.cs
+++ b/src/Backends/Banshee.Hal/Hal/Manager.cs
@@ -30,7 +30,7 @@ using System;
using System.Collections;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using org.freedesktop.DBus;
namespace Hal
diff --git a/src/Backends/Banshee.Hal/Hal/Volume.cs b/src/Backends/Banshee.Hal/Hal/Volume.cs
index fb0e293..9fb7382 100644
--- a/src/Backends/Banshee.Hal/Hal/Volume.cs
+++ b/src/Backends/Banshee.Hal/Hal/Volume.cs
@@ -30,7 +30,7 @@ using System;
using System.Collections;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
namespace Hal
{
diff --git a/src/Clients/Beroe/Beroe/IndexerClient.cs b/src/Clients/Beroe/Beroe/IndexerClient.cs
index 538ff87..2209443 100644
--- a/src/Clients/Beroe/Beroe/IndexerClient.cs
+++ b/src/Clients/Beroe/Beroe/IndexerClient.cs
@@ -31,7 +31,7 @@ using System.IO;
using System.Reflection;
using System.Diagnostics;
-using NDesk.DBus;
+using DBus;
using Hyena;
using Banshee.Base;
diff --git a/src/Clients/Booter/Booter/Entry.cs b/src/Clients/Booter/Booter/Entry.cs
index bf14959..c8b39ca 100644
--- a/src/Clients/Booter/Booter/Entry.cs
+++ b/src/Clients/Booter/Booter/Entry.cs
@@ -58,7 +58,7 @@ using System.Runtime.InteropServices;
using Mono.Unix;
-using NDesk.DBus;
+using DBus;
using Hyena;
using Hyena.CommandLine;
diff --git a/src/Clients/Halie/Halie/Client.cs b/src/Clients/Halie/Halie/Client.cs
index cf1f973..2ff9796 100644
--- a/src/Clients/Halie/Halie/Client.cs
+++ b/src/Clients/Halie/Halie/Client.cs
@@ -30,7 +30,7 @@ using System;
using System.IO;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using Hyena;
using Banshee.Base;
diff --git a/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer.RemoteHelper/IndexerClient.cs b/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer.RemoteHelper/IndexerClient.cs
index 94c2a5b..e880b6a 100644
--- a/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer.RemoteHelper/IndexerClient.cs
+++ b/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer.RemoteHelper/IndexerClient.cs
@@ -31,7 +31,7 @@ using System.Threading;
using Hyena;
-using NDesk.DBus;
+using DBus;
using org.freedesktop.DBus;
using Banshee.Collection.Indexer;
diff --git a/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer/ICollectionIndexer.cs b/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer/ICollectionIndexer.cs
index 8fd60c5..d5df6df 100644
--- a/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer/ICollectionIndexer.cs
+++ b/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer/ICollectionIndexer.cs
@@ -28,7 +28,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Collection.Indexer
{
diff --git a/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer/ICollectionIndexerService.cs b/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer/ICollectionIndexerService.cs
index 2cce19a..5051c87 100644
--- a/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer/ICollectionIndexerService.cs
+++ b/src/Core/Banshee.CollectionIndexer/Banshee.Collection.Indexer/ICollectionIndexerService.cs
@@ -27,7 +27,7 @@
//
using System;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Collection.Indexer
{
diff --git a/src/Core/Banshee.CollectionIndexer/Demo/RemoteClient.cs b/src/Core/Banshee.CollectionIndexer/Demo/RemoteClient.cs
index 228a902..0e3b57b 100644
--- a/src/Core/Banshee.CollectionIndexer/Demo/RemoteClient.cs
+++ b/src/Core/Banshee.CollectionIndexer/Demo/RemoteClient.cs
@@ -41,7 +41,7 @@ namespace RemoteClient
client.Start ();
while (true) {
- NDesk.DBus.Bus.Session.Iterate ();
+ DBus.Bus.Session.Iterate ();
}
}
diff --git a/src/Core/Banshee.Core/Banshee.Collection/ITrackInfo.cs b/src/Core/Banshee.Core/Banshee.Collection/ITrackInfo.cs
index fe43a9e..36f57a7 100644
--- a/src/Core/Banshee.Core/Banshee.Collection/ITrackInfo.cs
+++ b/src/Core/Banshee.Core/Banshee.Collection/ITrackInfo.cs
@@ -26,7 +26,7 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-using NDesk.DBus;
+using DBus;
namespace Banshee.Collection
{
diff --git a/src/Core/Banshee.Services/Banshee.Collection.Indexer/CollectionIndexerService.cs b/src/Core/Banshee.Services/Banshee.Collection.Indexer/CollectionIndexerService.cs
index 041f743..a406038 100644
--- a/src/Core/Banshee.Services/Banshee.Collection.Indexer/CollectionIndexerService.cs
+++ b/src/Core/Banshee.Services/Banshee.Collection.Indexer/CollectionIndexerService.cs
@@ -29,7 +29,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using Hyena.Query;
using Hyena.Data.Sqlite;
diff --git a/src/Core/Banshee.Services/Banshee.Collection.Indexer/ICollectionIndexer.cs b/src/Core/Banshee.Services/Banshee.Collection.Indexer/ICollectionIndexer.cs
index 8fd60c5..d5df6df 100644
--- a/src/Core/Banshee.Services/Banshee.Collection.Indexer/ICollectionIndexer.cs
+++ b/src/Core/Banshee.Services/Banshee.Collection.Indexer/ICollectionIndexer.cs
@@ -28,7 +28,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Collection.Indexer
{
diff --git a/src/Core/Banshee.Services/Banshee.Collection.Indexer/ICollectionIndexerService.cs b/src/Core/Banshee.Services/Banshee.Collection.Indexer/ICollectionIndexerService.cs
index 2cce19a..5051c87 100644
--- a/src/Core/Banshee.Services/Banshee.Collection.Indexer/ICollectionIndexerService.cs
+++ b/src/Core/Banshee.Services/Banshee.Collection.Indexer/ICollectionIndexerService.cs
@@ -27,7 +27,7 @@
//
using System;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Collection.Indexer
{
diff --git a/src/Core/Banshee.Services/Banshee.Collection.Indexer/IIndexerClient.cs b/src/Core/Banshee.Services/Banshee.Collection.Indexer/IIndexerClient.cs
index 89c46a3..e0237b1 100644
--- a/src/Core/Banshee.Services/Banshee.Collection.Indexer/IIndexerClient.cs
+++ b/src/Core/Banshee.Services/Banshee.Collection.Indexer/IIndexerClient.cs
@@ -27,7 +27,7 @@
//
using System;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Collection.Indexer
{
diff --git a/src/Core/Banshee.Services/Banshee.Collection/IExportableModel.cs b/src/Core/Banshee.Services/Banshee.Collection/IExportableModel.cs
index 01d03d7..e0ce1bd 100644
--- a/src/Core/Banshee.Services/Banshee.Collection/IExportableModel.cs
+++ b/src/Core/Banshee.Services/Banshee.Collection/IExportableModel.cs
@@ -29,7 +29,7 @@
using System.Collections.Generic;
using Banshee.ServiceStack;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Collection
{
diff --git a/src/Core/Banshee.Services/Banshee.MediaEngine/IPlayerEngineService.cs b/src/Core/Banshee.Services/Banshee.MediaEngine/IPlayerEngineService.cs
index d69140c..fc935ac 100644
--- a/src/Core/Banshee.Services/Banshee.MediaEngine/IPlayerEngineService.cs
+++ b/src/Core/Banshee.Services/Banshee.MediaEngine/IPlayerEngineService.cs
@@ -28,7 +28,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using Banshee.ServiceStack;
diff --git a/src/Core/Banshee.Services/Banshee.Networking/NetworkManager.cs b/src/Core/Banshee.Services/Banshee.Networking/NetworkManager.cs
index 22ddbf9..485a6e2 100644
--- a/src/Core/Banshee.Services/Banshee.Networking/NetworkManager.cs
+++ b/src/Core/Banshee.Services/Banshee.Networking/NetworkManager.cs
@@ -30,7 +30,7 @@ using System;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Networking
{
diff --git a/src/Core/Banshee.Services/Banshee.Networking/Wicd.cs b/src/Core/Banshee.Services/Banshee.Networking/Wicd.cs
index e38d436..37c16c9 100644
--- a/src/Core/Banshee.Services/Banshee.Networking/Wicd.cs
+++ b/src/Core/Banshee.Services/Banshee.Networking/Wicd.cs
@@ -30,7 +30,7 @@ using System;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Networking
{
diff --git a/src/Core/Banshee.Services/Banshee.PlaybackController/IPlaybackControllerService.cs b/src/Core/Banshee.Services/Banshee.PlaybackController/IPlaybackControllerService.cs
index 47e86e2..deb1feb 100644
--- a/src/Core/Banshee.Services/Banshee.PlaybackController/IPlaybackControllerService.cs
+++ b/src/Core/Banshee.Services/Banshee.PlaybackController/IPlaybackControllerService.cs
@@ -27,7 +27,7 @@
//
using System;
-using NDesk.DBus;
+using DBus;
using Banshee.ServiceStack;
@@ -39,7 +39,7 @@ namespace Banshee.PlaybackController
public interface IPlaybackControllerService : IDBusExportable
{
// FIXME: IPlaybackControllerExportable : IPlaybackController
- // but NDesk DBus has a design flaw where it only exports
+ // but DBus-Sharp has a design flaw where it only exports
// members of the top level interface where the [Interface]
// attribute is applied
diff --git a/src/Core/Banshee.Services/Banshee.ServiceStack/DBusCommandService.cs b/src/Core/Banshee.Services/Banshee.ServiceStack/DBusCommandService.cs
index dea0a81..7307a63 100644
--- a/src/Core/Banshee.Services/Banshee.ServiceStack/DBusCommandService.cs
+++ b/src/Core/Banshee.Services/Banshee.ServiceStack/DBusCommandService.cs
@@ -27,7 +27,7 @@
//
using System;
-using NDesk.DBus;
+using DBus;
namespace Banshee.ServiceStack
{
diff --git a/src/Core/Banshee.Services/Banshee.ServiceStack/DBusConnection.cs b/src/Core/Banshee.Services/Banshee.ServiceStack/DBusConnection.cs
index ed3b969..5e1eaef 100644
--- a/src/Core/Banshee.Services/Banshee.ServiceStack/DBusConnection.cs
+++ b/src/Core/Banshee.Services/Banshee.ServiceStack/DBusConnection.cs
@@ -29,7 +29,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using org.freedesktop.DBus;
using Hyena;
diff --git a/src/Core/Banshee.Services/Banshee.ServiceStack/DBusServiceManager.cs b/src/Core/Banshee.Services/Banshee.ServiceStack/DBusServiceManager.cs
index 80bcbb6..698cf02 100644
--- a/src/Core/Banshee.Services/Banshee.ServiceStack/DBusServiceManager.cs
+++ b/src/Core/Banshee.Services/Banshee.ServiceStack/DBusServiceManager.cs
@@ -32,7 +32,7 @@ using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Reflection;
-using NDesk.DBus;
+using DBus;
using org.freedesktop.DBus;
using Hyena;
diff --git a/src/Core/Banshee.Services/Banshee.Sources/IFilterableSource.cs b/src/Core/Banshee.Services/Banshee.Sources/IFilterableSource.cs
index 8cc25e4..042d928 100644
--- a/src/Core/Banshee.Services/Banshee.Sources/IFilterableSource.cs
+++ b/src/Core/Banshee.Services/Banshee.Sources/IFilterableSource.cs
@@ -29,7 +29,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using Banshee.Collection;
diff --git a/src/Core/Banshee.Services/Banshee.Sources/ISource.cs b/src/Core/Banshee.Services/Banshee.Sources/ISource.cs
index 590c514..b51cc52 100644
--- a/src/Core/Banshee.Services/Banshee.Sources/ISource.cs
+++ b/src/Core/Banshee.Services/Banshee.Sources/ISource.cs
@@ -28,7 +28,7 @@
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using Banshee.ServiceStack;
diff --git a/src/Core/Banshee.Services/Banshee.Sources/ISourceManager.cs b/src/Core/Banshee.Services/Banshee.Sources/ISourceManager.cs
index 9b97854..18203c7 100644
--- a/src/Core/Banshee.Services/Banshee.Sources/ISourceManager.cs
+++ b/src/Core/Banshee.Services/Banshee.Sources/ISourceManager.cs
@@ -29,7 +29,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using Banshee.ServiceStack;
diff --git a/src/Core/Banshee.Services/Banshee.Sources/ITrackModelSource.cs b/src/Core/Banshee.Services/Banshee.Sources/ITrackModelSource.cs
index 4bc88a3..19aa3bf 100644
--- a/src/Core/Banshee.Services/Banshee.Sources/ITrackModelSource.cs
+++ b/src/Core/Banshee.Services/Banshee.Sources/ITrackModelSource.cs
@@ -29,7 +29,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using Banshee.Collection;
diff --git a/src/Core/Banshee.ThickClient/Banshee.Gui/IClientWindow.cs b/src/Core/Banshee.ThickClient/Banshee.Gui/IClientWindow.cs
index cf7053b..1d693b1 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Gui/IClientWindow.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Gui/IClientWindow.cs
@@ -27,7 +27,7 @@
//
using System;
-using NDesk.DBus;
+using DBus;
using Banshee.ServiceStack;
diff --git a/src/Core/Banshee.ThickClient/Banshee.Gui/IGlobalUIActions.cs b/src/Core/Banshee.ThickClient/Banshee.Gui/IGlobalUIActions.cs
index 6f66b6e..34124c5 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Gui/IGlobalUIActions.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Gui/IGlobalUIActions.cs
@@ -25,7 +25,7 @@
// THE SOFTWARE.
using System;
-using NDesk.DBus;
+using DBus;
using Banshee.ServiceStack;
diff --git a/src/Extensions/Banshee.Mpris/Banshee.Mpris/IMediaPlayer.cs b/src/Extensions/Banshee.Mpris/Banshee.Mpris/IMediaPlayer.cs
index c75f3fe..d2dfc52 100644
--- a/src/Extensions/Banshee.Mpris/Banshee.Mpris/IMediaPlayer.cs
+++ b/src/Extensions/Banshee.Mpris/Banshee.Mpris/IMediaPlayer.cs
@@ -26,7 +26,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Mpris
{
diff --git a/src/Extensions/Banshee.Mpris/Banshee.Mpris/IPlayer.cs b/src/Extensions/Banshee.Mpris/Banshee.Mpris/IPlayer.cs
index 297bfbe..9bbf5db 100644
--- a/src/Extensions/Banshee.Mpris/Banshee.Mpris/IPlayer.cs
+++ b/src/Extensions/Banshee.Mpris/Banshee.Mpris/IPlayer.cs
@@ -28,7 +28,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
namespace Banshee.Mpris
{
diff --git a/src/Extensions/Banshee.Mpris/Banshee.Mpris/MediaPlayer.cs b/src/Extensions/Banshee.Mpris/Banshee.Mpris/MediaPlayer.cs
index 419f0ae..bdc56b7 100644
--- a/src/Extensions/Banshee.Mpris/Banshee.Mpris/MediaPlayer.cs
+++ b/src/Extensions/Banshee.Mpris/Banshee.Mpris/MediaPlayer.cs
@@ -31,7 +31,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using Hyena;
using Banshee.Gui;
diff --git a/src/Extensions/Banshee.Mpris/Banshee.Mpris/MprisService.cs b/src/Extensions/Banshee.Mpris/Banshee.Mpris/MprisService.cs
index 84a9ea8..97ed797 100644
--- a/src/Extensions/Banshee.Mpris/Banshee.Mpris/MprisService.cs
+++ b/src/Extensions/Banshee.Mpris/Banshee.Mpris/MprisService.cs
@@ -30,7 +30,7 @@
using System;
using org.freedesktop.DBus;
-using NDesk.DBus;
+using DBus;
using Hyena;
using Banshee.MediaEngine;
using Banshee.PlaybackController;
diff --git a/src/Extensions/Banshee.MultimediaKeys/Banshee.MultimediaKeys/MultimediaKeysService.cs b/src/Extensions/Banshee.MultimediaKeys/Banshee.MultimediaKeys/MultimediaKeysService.cs
index 4cb0d81..50b3094 100644
--- a/src/Extensions/Banshee.MultimediaKeys/Banshee.MultimediaKeys/MultimediaKeysService.cs
+++ b/src/Extensions/Banshee.MultimediaKeys/Banshee.MultimediaKeys/MultimediaKeysService.cs
@@ -31,7 +31,7 @@
using System;
using Mono.Unix;
-using NDesk.DBus;
+using DBus;
using Hyena;
using Banshee.Base;
diff --git a/src/Extensions/Banshee.NotificationArea/Notifications/Notification.cs b/src/Extensions/Banshee.NotificationArea/Notifications/Notification.cs
index dea0a7f..aa5a0e2 100644
--- a/src/Extensions/Banshee.NotificationArea/Notifications/Notification.cs
+++ b/src/Extensions/Banshee.NotificationArea/Notifications/Notification.cs
@@ -30,7 +30,7 @@ using GLib;
using Gdk;
using Gtk;
-using NDesk.DBus;
+using DBus;
using org.freedesktop;
using org.freedesktop.DBus;
diff --git a/src/Extensions/Banshee.NotificationArea/Notifications/Notifications.cs b/src/Extensions/Banshee.NotificationArea/Notifications/Notifications.cs
index b4404c6..67903e9 100644
--- a/src/Extensions/Banshee.NotificationArea/Notifications/Notifications.cs
+++ b/src/Extensions/Banshee.NotificationArea/Notifications/Notifications.cs
@@ -25,7 +25,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using org.freedesktop;
using org.freedesktop.DBus;
diff --git a/src/Extensions/Banshee.PlayQueue/Banshee.PlayQueue/IPlayQueue.cs b/src/Extensions/Banshee.PlayQueue/Banshee.PlayQueue/IPlayQueue.cs
index 77d1948..9343d66 100644
--- a/src/Extensions/Banshee.PlayQueue/Banshee.PlayQueue/IPlayQueue.cs
+++ b/src/Extensions/Banshee.PlayQueue/Banshee.PlayQueue/IPlayQueue.cs
@@ -27,7 +27,7 @@
//
using System;
-using NDesk.DBus;
+using DBus;
namespace Banshee.PlayQueue
{
diff --git a/src/Extensions/Banshee.Torrent/Banshee.Torrent/TorrentFileDownloadTask.cs b/src/Extensions/Banshee.Torrent/Banshee.Torrent/TorrentFileDownloadTask.cs
index f76183e..755c1f8 100644
--- a/src/Extensions/Banshee.Torrent/Banshee.Torrent/TorrentFileDownloadTask.cs
+++ b/src/Extensions/Banshee.Torrent/Banshee.Torrent/TorrentFileDownloadTask.cs
@@ -104,7 +104,7 @@ namespace Banshee.Torrent
downloader.Stop ();
}
- private void OnDownloaderStateChanged (NDesk.DBus.ObjectPath path, TorrentState from, TorrentState to)
+ private void OnDownloaderStateChanged (DBus.ObjectPath path, TorrentState from, TorrentState to)
{
if (downloader.GetState () == TorrentState.Seeding) {
SetProgress (100);
diff --git a/src/Extensions/Banshee.Torrent/Banshee.Torrent/TorrentService.cs b/src/Extensions/Banshee.Torrent/Banshee.Torrent/TorrentService.cs
index 0d6380b..5db3bd3 100644
--- a/src/Extensions/Banshee.Torrent/Banshee.Torrent/TorrentService.cs
+++ b/src/Extensions/Banshee.Torrent/Banshee.Torrent/TorrentService.cs
@@ -29,7 +29,7 @@
using System;
using System.Collections.Generic;
-using NDesk.DBus;
+using DBus;
using org.freedesktop.DBus;
using MonoTorrent.DBus;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]