diff options
Diffstat (limited to 'libkdeedu/kdeeduplot/kplotobject.h')
-rw-r--r-- | libkdeedu/kdeeduplot/kplotobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libkdeedu/kdeeduplot/kplotobject.h b/libkdeedu/kdeeduplot/kplotobject.h index 2474fc32..f1074cb6 100644 --- a/libkdeedu/kdeeduplot/kplotobject.h +++ b/libkdeedu/kdeeduplot/kplotobject.h @@ -82,7 +82,7 @@ private: *@short Encapsulates an object to be plotted in a KPlotWidget. *@author Jason Harris *@version 1.0 - *Each KPlotObject consists of a list of QPoints, an object type, a color, a size, + *Each KPlotObject consists of a list of TQPoints, an object type, a color, a size, *and a TQString name. An additional integer (param) specifies something further *about the object's appearance, depending on its type. There is a draw function *for plotting the object on a KPlotWidget's TQPainter. @@ -101,7 +101,7 @@ public: /**@enum CPARAM *Parameter specifying the kind of line. These are numerically equal to - *the Qt::PenStyle enum values. + *the TQt::PenStyle enum values. */ enum CPARAM { NO_LINE=0, SOLID=1, DASHED=2, DOTTED=3, DASHDOTTED=4, DASHDOTDOTTED=5, UNKNOWN_CURVE }; @@ -187,7 +187,7 @@ public: */ void removePoint( unsigned int index ); -/**@return the number of QPoints currently in the list +/**@return the number of TQPoints currently in the list */ unsigned int count() const { return pList.count(); } |