summaryrefslogtreecommitdiffstats
path: root/src/smalldialogs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smalldialogs.cpp')
-rw-r--r--src/smalldialogs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smalldialogs.cpp b/src/smalldialogs.cpp
index b4436ae..7dc6340 100644
--- a/src/smalldialogs.cpp
+++ b/src/smalldialogs.cpp
@@ -256,10 +256,10 @@ static void fixCurrentText( TQComboBox* pCB )
{
TQString s = pCB->currentText();
- int pos = s.tqfind( '\n' );
+ int pos = s.find( '\n' );
if ( pos>=0 )
s=s.left(pos);
- pos = s.tqfind( '\r' );
+ pos = s.find( '\r' );
if ( pos>=0 )
s=s.left(pos);