diff options
Diffstat (limited to 'lib/pilotMemo.cc')
-rw-r--r-- | lib/pilotMemo.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pilotMemo.cc b/lib/pilotMemo.cc index fab0ae8..c5d4c09 100644 --- a/lib/pilotMemo.cc +++ b/lib/pilotMemo.cc @@ -92,7 +92,7 @@ TQString PilotMemo::getTitle() const { if (fText.isEmpty()) return TQString(); - int memoTitleLen = fText.tqfind('\n'); + int memoTitleLen = fText.find('\n'); if (-1 == memoTitleLen) memoTitleLen=fText.length(); return fText.left(memoTitleLen); } @@ -106,7 +106,7 @@ TQString PilotMemo::shortTitle() const return t; t.truncate(40); - int spaceIndex = t.tqfindRev(' '); + int spaceIndex = t.findRev(' '); if (spaceIndex > 32) { |