[hyena] Gui: add protected IntPtr ctor to RatingEntry



commit c6896c8b74c24ad64f6e84db2382ea1ddfe8259e
Author: Andres G. Aragoneses <knocte gmail com>
Date:   Thu Oct 20 16:00:47 2011 +0100

    Gui: add protected IntPtr ctor to RatingEntry
    
    We need this ctor in the inheritance chain to fix
    Banshee's RatingEntry class (for bgo#662281).

 Hyena.Gui/Hyena.Widgets/RatingEntry.cs |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/Hyena.Gui/Hyena.Widgets/RatingEntry.cs b/Hyena.Gui/Hyena.Widgets/RatingEntry.cs
index e6a49ba..3da4271 100644
--- a/Hyena.Gui/Hyena.Widgets/RatingEntry.cs
+++ b/Hyena.Gui/Hyena.Widgets/RatingEntry.cs
@@ -69,6 +69,10 @@ namespace Hyena.Widgets
             Name = "GtkEntry";
         }
 
+        protected RatingEntry (IntPtr raw) : base (raw)
+        {
+        }
+
         protected virtual void OnChanging ()
         {
             EventHandler handler = Changing;



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