Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / gfx / charts.c
old mode 100755 (executable)
new mode 100644 (file)
index 945070d..c6f2bfa
@@ -1,4 +1,4 @@
-/*!
+/**
  * \file
  * <!--
  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.4  2006/07/19 12:56:26  bernie
+ *#* Convert to new Doxygen style.
+ *#*
+ *#* Revision 1.3  2005/11/27 23:33:29  bernie
+ *#* Reorder includes.
+ *#*
+ *#* Revision 1.2  2005/11/04 18:17:45  bernie
+ *#* Fix header guards and includes for new location of gfx module.
+ *#*
  *#* Revision 1.1  2005/11/04 18:11:35  bernie
  *#* Move graphics stuff from mware/ to gfx/.
  *#*
@@ -47,7 +56,7 @@
  *#*/
 
 #include "charts.h"
-#include <mware/gfx.h>
+#include <gfx/gfx.h>
 
 
 #ifndef CONFIG_CHART_ARROWS
@@ -73,7 +82,7 @@ void chart_setScale(Bitmap *bm, chart_x_t xmin, chart_y_t ymin, chart_x_t xmax,
 }
 
 
-/*!
+/**
  * Draw the chart axes
  */
 void chart_drawAxis(Bitmap *bm)
@@ -109,7 +118,7 @@ void chart_drawAxis(Bitmap *bm)
 }
 
 
-/*!
+/**
  * Draw a set of \a curve_cnt connected segments, whose Y coordinates
  * are identified by the \a curve_y array and X-coordinates are
  * are evenly spaced by one virtual unit.
@@ -128,7 +137,7 @@ void chart_drawCurve(Bitmap *bm, const chart_y_t *curve_y, int curve_cnt)
 }
 
 
-/*!
+/**
  * Disegna dei dot in corrispondenza delle coppie (dotsx[i];dotsy[i])
  * Se dotsx e' NULL, i punti vengono disegnati ad intervalli regolari.
  */