summaryrefslogtreecommitdiffstats
path: root/kspread/selection.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/selection.cc')
-rw-r--r--kspread/selection.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/kspread/selection.cc b/kspread/selection.cc
index 3a0346b6..f05a6db5 100644
--- a/kspread/selection.cc
+++ b/kspread/selection.cc
@@ -952,7 +952,7 @@ Selection::Point::Point(const TQString& string)
}
//search for the first character != text
- int result = string.tqfind( TQRegExp("[^A-Za-z]+"), p );
+ int result = string.find( TQRegExp("[^A-Za-z]+"), p );
if (string[result] == '$')
{
m_rowFixed = true;
@@ -986,7 +986,7 @@ Selection::Range::Range(const TQString& string)
return;
}
- int delimiterPos = string.tqfind(':');
+ int delimiterPos = string.find(':');
if (delimiterPos == -1)
{
return;