Author: mike
Date: 2010-12-21 11:41:45 -0800 (Tue, 21 Dec 2010)
New Revision: 450
Log:
Make fldiff compile with FLTK 1.3.


Modified:
   trunk/fldiff/DiffWindow.cxx

Modified: trunk/fldiff/DiffWindow.cxx
===================================================================
--- trunk/fldiff/DiffWindow.cxx 2010-02-12 19:17:09 UTC (rev 449)
+++ trunk/fldiff/DiffWindow.cxx 2010-12-21 19:41:45 UTC (rev 450)
@@ -1126,11 +1126,11 @@
 DiffWindow::save_prefs()
 {
   // Save the window prefs for the next run...
-  prefs_.set("color", color());
-  prefs_.set("selection_color", selection_color());
+  prefs_.set("color", (int)color());
+  prefs_.set("selection_color", (int)selection_color());
   prefs_.set("showlinenum", showlinenum());
   prefs_.set("tabwidth", tabwidth());
-  prefs_.set("textcolor", textcolor());
+  prefs_.set("textcolor", (int)textcolor());
   prefs_.set("textsize", textsize());
   prefs_.set("ignoreblanks", ignoreblanks());
 }

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to