summaryrefslogtreecommitdiffstats
path: root/kmplot/kmplot/kmplotio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmplot/kmplot/kmplotio.cpp')
-rw-r--r--kmplot/kmplot/kmplotio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmplot/kmplot/kmplotio.cpp b/kmplot/kmplot/kmplotio.cpp
index 5b364731..1b195a42 100644
--- a/kmplot/kmplot/kmplotio.cpp
+++ b/kmplot/kmplot/kmplotio.cpp
@@ -435,7 +435,7 @@ void KmPlotIO::parseFunction( XParser *m_parser, const TQDomElement & n )
TQString fstr = ufkt.fstr;
if ( !fstr.isEmpty() )
{
- int const i = fstr.tqfind( ';' );
+ int const i = fstr.find( ';' );
TQString str;
if ( i == -1 )
str = fstr;
@@ -530,7 +530,7 @@ void KmPlotIO::oldParseFunction( XParser *m_parser, const TQDomElement & n )
}
const TQString tmp_fstr = n.namedItem( "equation" ).toElement().text();
- const int pos = tmp_fstr.tqfind(';');
+ const int pos = tmp_fstr.find(';');
if ( pos == -1 )
ufkt.fstr = tmp_fstr;
else
@@ -546,7 +546,7 @@ void KmPlotIO::oldParseFunction( XParser *m_parser, const TQDomElement & n )
TQString fstr = ufkt.fstr;
if ( !fstr.isEmpty() )
{
- int const i = fstr.tqfind( ';' );
+ int const i = fstr.find( ';' );
TQString str;
if ( i == -1 )
str = fstr;