diff options
Diffstat (limited to 'libkscan/devselector.cpp')
-rw-r--r-- | libkscan/devselector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libkscan/devselector.cpp b/libkscan/devselector.cpp index 011e7469..bbed0f3b 100644 --- a/libkscan/devselector.cpp +++ b/libkscan/devselector.cpp @@ -95,7 +95,7 @@ TQCString DeviceSelector::getDeviceFromConfig( void ) const /* Now check if the scanner read from the config file is available ! * if not, ask the user ! */ - if( skipDialog && devices.tqfind( result ) > -1 ) + if( skipDialog && devices.find( result ) > -1 ) { kdDebug(29000) << "Scanner from Config file is available - fine." << endl; } @@ -168,7 +168,7 @@ void DeviceSelector::setScanSources( const TQStrList& sources, if( ! default_ok ) { /* if no default found, set the first */ - TQRadioButton *rb = (TQRadioButton*) selectBox->tqfind( checkDefNo ); + TQRadioButton *rb = (TQRadioButton*) selectBox->find( checkDefNo ); if ( rb ) rb->setChecked( true ); } |