DOC update

This commit is contained in:
jkriege2 2024-02-06 12:18:54 +01:00
parent 210c7aaa42
commit e63f053896
2 changed files with 4 additions and 3 deletions

View File

@ -899,7 +899,7 @@ QString JKQTPUserActionMarkerType2String(JKQTPUserActionMarkerType act)
JKQTPUserActionMarkerType String2JKQTPUserActionMarkerType(const QString &act) JKQTPUserActionMarkerType String2JKQTPUserActionMarkerType(const QString &act)
{ {
QString m=act.trimmed().toLower(); const QString m=act.trimmed().toLower();
if (m=="circle") return jkqtpuamtCircle; if (m=="circle") return jkqtpuamtCircle;
if (m=="crosshair" || m=="cross") return jkqtpuamtCrossHair; if (m=="crosshair" || m=="cross") return jkqtpuamtCrossHair;
if (m=="circle+crosshair" || m=="circle+cross") return jkqtpuamtCircleAndCrossHair; if (m=="circle+crosshair" || m=="circle+cross") return jkqtpuamtCircleAndCrossHair;
@ -944,3 +944,4 @@ QList<JKQTPKeyPosition> JKQTPGetTypicalKeyPositions()
}; };
return pos; return pos;
} }

View File

@ -442,7 +442,7 @@ JKQTPLOTTER_LIB_EXPORT QString JKQTPCADrawMode2String(JKQTPCADrawMode pos);
JKQTPLOTTER_LIB_EXPORT JKQTPCADrawMode String2JKQTPCADrawMode(const QString& pos); JKQTPLOTTER_LIB_EXPORT JKQTPCADrawMode String2JKQTPCADrawMode(const QString& pos);
/** \brief display mode for the axis labels /** \brief display mode for the (axis) labels
* \ingroup jkqtpplottersupprt */ * \ingroup jkqtpplottersupprt */
enum JKQTPCALabelType { enum JKQTPCALabelType {
JKQTPCALTdefault=0, /*!< \brief simply print the numbers \image html axisstyle/JKQTPCALTdefault.png */ JKQTPCALTdefault=0, /*!< \brief simply print the numbers \image html axisstyle/JKQTPCALTdefault.png */
@ -649,6 +649,7 @@ enum JKQTPKeyLayout {
}; };
/** \brief converts a JKQTPKeyLayout variable into a human-readable string /** \brief converts a JKQTPKeyLayout variable into a human-readable string
* \ingroup jkqtpplottersupprt * \ingroup jkqtpplottersupprt
*/ */
@ -765,5 +766,4 @@ JKQTPLOTTER_LIB_EXPORT JKQTPSpecialLineType String2JKQTPSpecialLineType(const QS
#endif // JKQTPTOOLS_H_INCLUDED #endif // JKQTPTOOLS_H_INCLUDED