[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r1387: Naughty Matt. When you change the name of a parameter, you'r (trunk/src/gui/bwgraph)
Author: edmanm
Date: 2006-10-24 01:57:49 -0400 (Tue, 24 Oct 2006)
New Revision: 1387
Modified:
trunk/src/gui/bwgraph/graphframe.cpp
trunk/src/gui/bwgraph/graphframe.h
Log:
Naughty Matt. When you change the name of a parameter, you're supposed to
update that function's Doxygen comments.
Modified: trunk/src/gui/bwgraph/graphframe.cpp
===================================================================
--- trunk/src/gui/bwgraph/graphframe.cpp 2006-10-24 05:52:18 UTC (rev 1386)
+++ trunk/src/gui/bwgraph/graphframe.cpp 2006-10-24 05:57:49 UTC (rev 1387)
@@ -204,7 +204,7 @@
return points;
}
-/** Plots an integral using the data points in <b>list</b>. The area will be
+/** Plots an integral using the data points in <b>points</b>. The area will be
* filled in using <b>color</b> and an alpha-blending level of <b>alpha</b>
* (default is opaque). */
void
Modified: trunk/src/gui/bwgraph/graphframe.h
===================================================================
--- trunk/src/gui/bwgraph/graphframe.h 2006-10-24 05:52:18 UTC (rev 1386)
+++ trunk/src/gui/bwgraph/graphframe.h 2006-10-24 05:57:49 UTC (rev 1387)
@@ -84,7 +84,7 @@
/** Returns a list of points on the bandwidth graph based on the supplied set
* of send or receive values. */
QVector<QPointF> pointsFromData(QList<qreal>* list);
- /** Paints a line with the data in list. */
+ /** Paints a line with the data in <b>points</b>. */
void paintLine(QVector<QPointF> points, QColor color,
Qt::PenStyle lineStyle = Qt::SolidLine);
/** Paints an integral using the supplied data. */