banshee r3503 - in trunk/banshee: . src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs
- From: ahixon svn gnome org
- To: svn-commits-list gnome org
- Subject: banshee r3503 - in trunk/banshee: . src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs
- Date: Fri, 21 Mar 2008 05:12:40 +0000 (GMT)
Author: ahixon
Date: Fri Mar 21 05:12:40 2008
New Revision: 3503
URL: http://svn.gnome.org/viewvc/banshee?rev=3503&view=rev
Log:
2008-03-21 Alexander Hixon <hixon alexander mediati org>
* src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/TrackEditor.cs:
* src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/PreferencesDialog.cs:
* src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/AboutDialog.cs:
Unbreak builds for people using newer versions of Gtk#.
Modified:
trunk/banshee/ChangeLog
trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/AboutDialog.cs
trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/PreferencesDialog.cs
trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/TrackEditor.cs
Modified: trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/AboutDialog.cs
==============================================================================
--- trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/AboutDialog.cs (original)
+++ trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/AboutDialog.cs Fri Mar 21 05:12:40 2008
@@ -25,6 +25,8 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
+
+#pragma warning disable 0618
using System;
using System.Text;
@@ -76,6 +78,9 @@
Banshee.Web.Browser.Open (link);
});
+ // TODO: We should really use ProgramName in the future rather
+ // than plain Name, since it's been depreciated. We can't do that
+ // yet though since it breaks stuff for other people.
Name = "Banshee";
Logo = Gdk.Pixbuf.LoadFromResource ("banshee-logo.png");
Version = String.Format ("{0} ({1})",
@@ -99,3 +104,5 @@
}
}
}
+
+#pragma warning restore 0618
Modified: trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/PreferencesDialog.cs
==============================================================================
--- trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/PreferencesDialog.cs (original)
+++ trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/PreferencesDialog.cs Fri Mar 21 05:12:40 2008
@@ -26,6 +26,8 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
+#pragma warning disable 0612
+
using System;
using System.IO;
@@ -188,3 +190,5 @@
}
}
}
+
+#pragma warning restore 0612
Modified: trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/TrackEditor.cs
==============================================================================
--- trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/TrackEditor.cs (original)
+++ trunk/banshee/src/Core/Banshee.ThickClient/Banshee.Gui.Dialogs/TrackEditor.cs Fri Mar 21 05:12:40 2008
@@ -26,6 +26,8 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
+#pragma warning disable 0612
+
using System;
using Gtk;
using Glade;
@@ -634,3 +636,5 @@
}
}
}
+
+#pragma warning restore 0612
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]