f-spot r3530 - trunk/src



Author: lewing
Date: Mon Jan  7 17:07:30 2008
New Revision: 3530
URL: http://svn.gnome.org/viewvc/f-spot?rev=3530&view=rev

Log:
Add namespace to Gtk.Action references because System.Action will be here soon.


Modified:
   trunk/src/FullScreenView.cs
   trunk/src/ItemAction.cs

Modified: trunk/src/FullScreenView.cs
==============================================================================
--- trunk/src/FullScreenView.cs	(original)
+++ trunk/src/FullScreenView.cs	Mon Jan  7 17:07:30 2008
@@ -62,7 +62,7 @@
 							       InfoAction,
 							       false)});
 
-				Action exit_full_screen = new Action (ExitFullScreen, 
+				Gtk.Action exit_full_screen = new Gtk.Action (ExitFullScreen, 
 					Catalog.GetString ("Exit fullscreen"),
 					null,
 					null);
@@ -72,7 +72,7 @@
 				exit_full_screen.Activated += ExitAction;
 				actions.Add (exit_full_screen);
 
-				Action slide_show = new Action (SlideShow,
+				Gtk.Action slide_show = new Gtk.Action (SlideShow,
 					Catalog.GetString ("Slideshow"),
 					Catalog.GetString ("Start slideshow"),
 					null);
@@ -110,7 +110,7 @@
 				t_item.IsImportant = true;
 				tbar.Insert (t_item, -1);
 
-				Action action = new PreviousPictureAction (view.Item);
+				Gtk.Action action = new PreviousPictureAction (view.Item);
 				actions.Add (action);
 #if GTK_2_10
 				tbar.Insert (action.CreateToolItem () as ToolItem, -1);

Modified: trunk/src/ItemAction.cs
==============================================================================
--- trunk/src/ItemAction.cs	(original)
+++ trunk/src/ItemAction.cs	Mon Jan  7 17:07:30 2008
@@ -15,7 +15,7 @@
 using System;
 
 namespace FSpot {
-	public abstract class ItemAction : Action {
+	public abstract class ItemAction : Gtk.Action {
 		protected BrowsablePointer item;
 
 		public ItemAction (BrowsablePointer pointer,



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