summaryrefslogtreecommitdiffstats
path: root/kmplot/kmplot/kmplotio.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kmplot/kmplot/kmplotio.h
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmplot/kmplot/kmplotio.h')
-rw-r--r--kmplot/kmplot/kmplotio.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kmplot/kmplot/kmplotio.h b/kmplot/kmplot/kmplotio.h
index 837cf4ec..8fac662e 100644
--- a/kmplot/kmplot/kmplotio.h
+++ b/kmplot/kmplot/kmplotio.h
@@ -64,36 +64,36 @@ class KmPlotIO
* @param tagName The Name of the tag.
* @param tagValue The data between the opening and cloding tag.
*/
- void addTag( QDomDocument &doc, QDomElement &parentTag, const QString tagName, const QString tagValue );
+ void addTag( TQDomDocument &doc, TQDomElement &parentTag, const TQString tagName, const TQString tagValue );
/// Reads axes parameters from the node @a n.
/// @param n Node containing the options.
- void parseAxes( const QDomElement &n );
+ void parseAxes( const TQDomElement &n );
/// Reads grid parameters from the node @a n.
/// @param n Node containing the options.
- void parseGrid( const QDomElement &n );
+ void parseGrid( const TQDomElement &n );
/// Reads scale parameters from the node @a n.
/// @param n Node containing the options.
- void parseScale( const QDomElement &n );
+ void parseScale( const TQDomElement &n );
/// Reads function parameters from the node @a n.
/// @param parser points to the parser instance.
/// @param n Node containing the options.
- void parseFunction( XParser *parser, const QDomElement &n );
+ void parseFunction( XParser *parser, const TQDomElement &n );
/// Reads parameter values for a function from the node @a n.
/// @param parser points to the parser instance.
/// @param n Node containing the options.
/// @param ix Function index in the parser instance
- void parseParameters( XParser *parser, const QDomElement &n, Ufkt &ufkt);
+ void parseParameters( XParser *parser, const TQDomElement &n, Ufkt &ufkt);
/// For KDE 3.3
- void parseThreeDotThreeParameters( XParser *parser, const QDomElement &n, Ufkt &ufkt);
+ void parseThreeDotThreeParameters( XParser *parser, const TQDomElement &n, Ufkt &ufkt);
///For KDE <3.3
/// This is the same as parseScale but is made for old Kmplot-files
- void oldParseScale( const QDomElement & n );
+ void oldParseScale( const TQDomElement & n );
/// This is the same as parseFunction but is made for old Kmplot-files
- void oldParseFunction( XParser *parser, const QDomElement &n );
+ void oldParseFunction( XParser *parser, const TQDomElement &n );
/// This is the same as parseAxes but is made for old Kmplot-files
- void oldParseAxes( const QDomElement &n );
+ void oldParseAxes( const TQDomElement &n );
XParser *m_parser;