Author: matt
Date: 2011-07-28 11:03:37 -0700 (Thu, 28 Jul 2011)
New Revision: 8880
Log:
Fixed buf in DOS conversion

Modified:
   branches/branch-3.0/fluid/CMakeLists.txt
   branches/branch-3.0/fluid/file_visualc.cxx

Modified: branches/branch-3.0/fluid/CMakeLists.txt
===================================================================
--- branches/branch-3.0/fluid/CMakeLists.txt    2011-07-28 15:43:16 UTC (rev 
8879)
+++ branches/branch-3.0/fluid/CMakeLists.txt    2011-07-28 18:03:37 UTC (rev 
8880)
@@ -23,30 +23,6 @@
        undo.cxx
        widget_panel.cxx
        workspace_panel.cxx
-       CodeEditor.cxx
-       Fl_Function_Type.cxx
-       Fl_Group_Type.cxx
-       Fl_Menu_Type.cxx
-       Fl_Type.cxx
-       Fl_Widget_Type.cxx
-       Fl_Window_Type.cxx
-       Fluid_Image.cxx
-       about_panel.cxx
-       align_widget.cxx
-       alignment_panel.cxx
-       code.cxx
-       factory.cxx
-       file.cxx
-       file_cmake.cxx
-       file_make.cxx
-       file_visualc.cxx
-       file_xcode.cxx
-       fluid.cxx
-       function_panel.cxx
-       template_panel.cxx
-       undo.cxx
-       widget_panel.cxx
-       workspace_panel.cxx
 )
 add_executable(fluid ${CPPFILES})
 target_link_libraries(fluid fltk fltk_images fltk_forms)

Modified: branches/branch-3.0/fluid/file_visualc.cxx
===================================================================
--- branches/branch-3.0/fluid/file_visualc.cxx  2011-07-28 15:43:16 UTC (rev 
8879)
+++ branches/branch-3.0/fluid/file_visualc.cxx  2011-07-28 18:03:37 UTC (rev 
8880)
@@ -48,7 +48,7 @@
   for (c=buf;;c++) {
     switch (*c) {
       case '/': *c = '\\'; break;
-      case 0: break;
+      case 0: return buf;
     }
   }
   return buf;

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

Reply via email to