[banshee/gio-hardware] [GioHardware] Remove #if ENABLE_GIO_HARDWARE.



commit c28af7c2464c9165a44764db1dd1083933b36e3b
Author: Alex Launi <alex launi gmail com>
Date:   Wed Jul 28 15:16:38 2010 +0200

    [GioHardware] Remove #if ENABLE_GIO_HARDWARE.
    
    Having entire files #if/endif'd breaks MonoDevelop.

 .../Banshee.Hardware.Gio/BlockDevice.cs            |    2 +-
 .../Banshee.Hardware.Gio/CdromDevice.cs            |    2 +-
 .../Banshee.Gio/Banshee.Hardware.Gio/Device.cs     |    2 +-
 .../DeviceMediaCapabilities.cs                     |    2 +-
 .../Banshee.Gio/Banshee.Hardware.Gio/DiscVolume.cs |    2 +-
 .../Banshee.Gio/Banshee.Hardware.Gio/DiskDevice.cs |    2 +-
 .../Banshee.Hardware.Gio/HardwareManager.cs        |    2 +-
 .../LowLevel/GioDriveMetadetaSource.cs             |    2 +-
 .../LowLevel/GioMetadataSource.cs                  |    2 +-
 .../LowLevel/GioVolumeMetadataSource.cs            |    2 +-
 .../LowLevel/IMetadataSource.cs                    |    2 +-
 .../Banshee.Hardware.Gio/LowLevel/IRawDevice.cs    |    2 +-
 .../Banshee.Hardware.Gio/LowLevel/Manager.cs       |    2 +-
 .../LowLevel/RawBlockDevice.cs                     |    2 +-
 .../Banshee.Hardware.Gio/LowLevel/RawDevice.cs     |    2 +-
 .../Banshee.Hardware.Gio/LowLevel/RawUsbDevice.cs  |    2 +-
 .../Banshee.Hardware.Gio/LowLevel/RawVolume.cs     |    2 +-
 .../LowLevel/UdevMetadataSource.cs                 |    2 +-
 18 files changed, 18 insertions(+), 18 deletions(-)
---
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/BlockDevice.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/BlockDevice.cs
index a642844..0e374e4 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/BlockDevice.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/BlockDevice.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 using System.Collections;
 using System.Collections.Generic;
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/CdromDevice.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/CdromDevice.cs
index ea10ff8..638867d 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/CdromDevice.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/CdromDevice.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 using System.Runtime.InteropServices;
 using Mono.Unix;
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/Device.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/Device.cs
index 277b949..d386139 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/Device.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/Device.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 using System.Collections.Generic;
 using System.Linq;
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DeviceMediaCapabilities.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DeviceMediaCapabilities.cs
index 94e4235..60a9a61 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DeviceMediaCapabilities.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DeviceMediaCapabilities.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 using System.Collections.Generic;
 using System.Linq;
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DiscVolume.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DiscVolume.cs
index 96a2767..c656315 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DiscVolume.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DiscVolume.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 
 using Banshee.Hardware;
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DiskDevice.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DiskDevice.cs
index 7eab0a6..b8fddb1 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DiskDevice.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/DiskDevice.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 
 using Banshee.Hardware;
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/HardwareManager.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/HardwareManager.cs
index 6640252..176f822 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/HardwareManager.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/HardwareManager.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 using System.Collections.Generic;
 
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioDriveMetadetaSource.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioDriveMetadetaSource.cs
index 97df8e5..9e36f0c 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioDriveMetadetaSource.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioDriveMetadetaSource.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 
 using GLib;
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioMetadataSource.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioMetadataSource.cs
index 467d052..efe7b89 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioMetadataSource.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioMetadataSource.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 
 namespace Banshee.Hardware.Gio
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioVolumeMetadataSource.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioVolumeMetadataSource.cs
index 9a861fc..b40b508 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioVolumeMetadataSource.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/GioVolumeMetadataSource.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 
 namespace Banshee.Hardware.Gio
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/IMetadataSource.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/IMetadataSource.cs
index 93298c7..b828f95 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/IMetadataSource.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/IMetadataSource.cs
@@ -23,7 +23,7 @@
 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
-#if ENABLE_GIO_HARDWARE
+
 using System;
 namespace Banshee.Hardware.Gio
 {
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/IRawDevice.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/IRawDevice.cs
index 300b187..923f743 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/IRawDevice.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/IRawDevice.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 
 namespace Banshee.Hardware.Gio
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/Manager.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/Manager.cs
index a5a6fab..ac316ad 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/Manager.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/Manager.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 using System.Collections;
 using System.Collections.Generic;
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawBlockDevice.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawBlockDevice.cs
index 765b86e..a9555c5 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawBlockDevice.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawBlockDevice.cs
@@ -23,7 +23,7 @@
 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
-#if ENABLE_GIO_HARDWARE
+
 using System;
 using System.Collections.Generic;
 
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawDevice.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawDevice.cs
index b9a0ccd..9e3cf5f 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawDevice.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawDevice.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 using System.Collections.Generic;
 using System.Linq;
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawUsbDevice.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawUsbDevice.cs
index 7deb3e2..3315aa2 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawUsbDevice.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawUsbDevice.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 
 namespace Banshee.Hardware.Gio
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawVolume.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawVolume.cs
index a2e276d..36d0949 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawVolume.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/RawVolume.cs
@@ -24,7 +24,7 @@
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
 
-#if ENABLE_GIO_HARDWARE
+
 using System;
 using System.Collections.Generic;
 
diff --git a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/UdevMetadataSource.cs b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/UdevMetadataSource.cs
index 04cb12b..acbf8b5 100644
--- a/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/UdevMetadataSource.cs
+++ b/src/Backends/Banshee.Gio/Banshee.Hardware.Gio/LowLevel/UdevMetadataSource.cs
@@ -23,7 +23,7 @@
 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 // THE SOFTWARE.
-#if ENABLE_GIO_HARDWARE
+
 using System;
 namespace Banshee.Hardware.Gio
 {



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