diff options
Diffstat (limited to 'kig/misc/coordinate_system.cpp')
-rw-r--r-- | kig/misc/coordinate_system.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kig/misc/coordinate_system.cpp b/kig/misc/coordinate_system.cpp index deefe954..10bd96ce 100644 --- a/kig/misc/coordinate_system.cpp +++ b/kig/misc/coordinate_system.cpp @@ -80,7 +80,7 @@ TQValidator::State CoordinateValidator::validate( TQString & input, int & pos ) if( tinput[tinput.length() - 1 ] == ' ' ) tinput.truncate( tinput.length() - 1 ); if ( tinput[0] == '(' ) tinput = tinput.mid( 1 ); if( tinput[0] == ' ' ) tinput = tinput.mid( 1 ); - int scp = tinput.tqfind( ';' ); + int scp = tinput.find( ';' ); if ( scp == -1 ) return mdv.validate( tinput, pos ) == Invalid ? Invalid : Valid; else { @@ -101,16 +101,16 @@ TQValidator::State CoordinateValidator::validate( TQString & input, int & pos ) void CoordinateValidator::fixup( TQString & input ) const { - int nsc = input.tqcontains( ';' ); + int nsc = input.contains( ';' ); if ( nsc > 1 ) { // where is the second ';' - int i = input.tqfind( ';' ); - i = input.tqfind( ';', i ); + int i = input.find( ';' ); + i = input.find( ';', i ); input = input.left( i ); }; // now the string has at most one semicolon left.. - int sc = input.tqfind( ';' ); + int sc = input.find( ';' ); if ( sc == -1 ) { sc = input.length(); @@ -616,7 +616,7 @@ Coordinate EuclideanCoords::snapToGrid( const Coordinate& c, Coordinate PolarCoords::snapToGrid( const Coordinate& c, const KigWidget& w ) const { - // we reuse the drawGrid code to tqfind + // we reuse the drawGrid code to find // we multiply by sqrt( 2 ) cause we don't want to miss circles in // the corners, that intersect with the axes outside of the |