summaryrefslogtreecommitdiffstats
path: root/kugar/lib/inputmask.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kugar/lib/inputmask.cpp')
-rw-r--r--kugar/lib/inputmask.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kugar/lib/inputmask.cpp b/kugar/lib/inputmask.cpp
index 8194a211..6fb49220 100644
--- a/kugar/lib/inputmask.cpp
+++ b/kugar/lib/inputmask.cpp
@@ -255,7 +255,7 @@ TQString InputMask::maskString( uint pos, const TQString &str, bool clear ) cons
if ( str.length() != 1 || i == 0 || ( i > 0 && ( !m_maskData[ i - 1 ].separator || m_maskData[ i - 1 ].maskChar != str[ ( int ) strIndex ] ) ) )
{
s += fill.mid( i, n - i + 1 );
- i = n + 1; // update i to tqfind + 1
+ i = n + 1; // update i to find + 1
}
}
else
@@ -276,7 +276,7 @@ TQString InputMask::maskString( uint pos, const TQString &str, bool clear ) cons
default:
s += str[ ( int ) strIndex ];
}
- i = n + 1; // updates i to tqfind + 1
+ i = n + 1; // updates i to find + 1
}
}
}