# HG changeset patch # User IBBoard # Date 1297613889 0 # Node ID 70c46caee5087a3ffd7bdd37c23d92346cb8dd27 # Parent 5e0e85cbfd6e3f81075d46d3de52dc3fed1ab104 * Resolve conflicts between System.Action and Gtk.Action no-open-ticket diff -r 5e0e85cbfd6e -r 70c46caee508 Lang/ITranslatableWithActions.cs --- a/Lang/ITranslatableWithActions.cs Wed Jan 26 20:01:21 2011 +0000 +++ b/Lang/ITranslatableWithActions.cs Sun Feb 13 16:18:09 2011 +0000 @@ -2,7 +2,6 @@ // // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. -using System; using IBBoard.Lang; using Gtk; using System.Collections.Generic; diff -r 5e0e85cbfd6e -r 70c46caee508 Translatable/ControlTranslator.cs --- a/Translatable/ControlTranslator.cs Wed Jan 26 20:01:21 2011 +0000 +++ b/Translatable/ControlTranslator.cs Sun Feb 13 16:18:09 2011 +0000 @@ -2,7 +2,6 @@ // // // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. -using System; using Gtk; using IBBoard.Lang; @@ -72,7 +71,7 @@ } } - private static void TranslateAction(Action action) + private static void TranslateAction(Gtk.Action action) { action.Label = Translation.GetTranslation(action.Name, action.Label); } diff -r 5e0e85cbfd6e -r 70c46caee508 Translatable/TranslatableWindowWithActions.cs --- a/Translatable/TranslatableWindowWithActions.cs Wed Jan 26 20:01:21 2011 +0000 +++ b/Translatable/TranslatableWindowWithActions.cs Sun Feb 13 16:18:09 2011 +0000 @@ -2,9 +2,9 @@ // // // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. -using System; using System.Collections.Generic; using Gtk; +using System; namespace IBBoard.GtkSharp.Translatable { @@ -26,7 +26,7 @@ //Do nothing extra } - public abstract ICollection Actions + public abstract ICollection Actions { get; }