summaryrefslogtreecommitdiffstats
path: root/krec/krecconfigure.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit7ef01c0f34d9c6732d258154bcd3ba5a88280db9 (patch)
tree48ff13dab43883d19ecf2272b8ba72a013d5bc57 /krec/krecconfigure.cpp
parentc05ca496a526b3fc192dbfafe0955e5824b22e08 (diff)
downloadtdemultimedia-7ef01c0f34d9c6732d258154bcd3ba5a88280db9.tar.gz
tdemultimedia-7ef01c0f34d9c6732d258154bcd3ba5a88280db9.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'krec/krecconfigure.cpp')
-rw-r--r--krec/krecconfigure.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/krec/krecconfigure.cpp b/krec/krecconfigure.cpp
index 65cb7497..5201c28d 100644
--- a/krec/krecconfigure.cpp
+++ b/krec/krecconfigure.cpp
@@ -151,17 +151,17 @@ void KRecConfigGeneral::defaults() {
void KRecConfigGeneral::displaychanged( int index ) {
int verbose = _displaymode / 100;
- if ( _displaybox->tqfind( index ) == _display0 ) _displaymode = 0 + verbose * 100;
- if ( _displaybox->tqfind( index ) == _display1 ) _displaymode = 1 + verbose * 100;
- if ( _displaybox->tqfind( index ) == _display2 ) _displaymode = 2 + verbose * 100;
- if ( _displaybox->tqfind( index ) == _display3 ) _displaymode = 3 + verbose * 100;
+ if ( _displaybox->find( index ) == _display0 ) _displaymode = 0 + verbose * 100;
+ if ( _displaybox->find( index ) == _display1 ) _displaymode = 1 + verbose * 100;
+ if ( _displaybox->find( index ) == _display2 ) _displaymode = 2 + verbose * 100;
+ if ( _displaybox->find( index ) == _display3 ) _displaymode = 3 + verbose * 100;
emit changed( true );
}
void KRecConfigGeneral::framebasechanged( int index ) {
- if ( _framebasebox->tqfind( index ) == _framebase30 ) _framebase = 30;
- if ( _framebasebox->tqfind( index ) == _framebase25 ) _framebase = 25;
- if ( _framebasebox->tqfind( index ) == _framebase75 ) _framebase = 75;
- if ( _framebasebox->tqfind( index ) == _framebaseother ) {
+ if ( _framebasebox->find( index ) == _framebase30 ) _framebase = 30;
+ if ( _framebasebox->find( index ) == _framebase25 ) _framebase = 25;
+ if ( _framebasebox->find( index ) == _framebase75 ) _framebase = 75;
+ if ( _framebasebox->find( index ) == _framebaseother ) {
_framebaseotherbox->setEnabled( true );
_framebase = _framebaseotherline->text().toInt();
kdDebug(60005) << k_funcinfo << "Framebase=" << _framebase << endl;