f-spot r4513 - trunk/extensions/Tools/HashJob



Author: sdelcroix
Date: Fri Oct 17 19:00:42 2008
New Revision: 4513
URL: http://svn.gnome.org/viewvc/f-spot?rev=4513&view=rev

Log:
fix for pre 1.9 compilers

Modified:
   trunk/extensions/Tools/HashJob/HashJob.cs

Modified: trunk/extensions/Tools/HashJob/HashJob.cs
==============================================================================
--- trunk/extensions/Tools/HashJob/HashJob.cs	(original)
+++ trunk/extensions/Tools/HashJob/HashJob.cs	Fri Oct 17 19:00:42 2008
@@ -35,7 +35,8 @@
 		public void ShowDialog ()
 		{ 			
 			VBox.Spacing = 6;
-			Label l = new Label ("In order to detect duplicates on pictures you imported before f-spot 0.5.0, f-spot need to analyze your image collection. This is is not done by default as it's time consuming. You can Start or Pause this update process using this dialog.") {LineWrap = true};
+			Label l = new Label ("In order to detect duplicates on pictures you imported before f-spot 0.5.0, f-spot need to analyze your image collection. This is is not done by default as it's time consuming. You can Start or Pause this update process using this dialog."); 
+			l.LineWrap = true;
 			VBox.PackStart (l);
 
 			Button execute = new Button (Stock.Execute);



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