summaryrefslogtreecommitdiffstats
path: root/libk3b/tools/k3bintmapcombobox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libk3b/tools/k3bintmapcombobox.cpp')
-rw-r--r--libk3b/tools/k3bintmapcombobox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libk3b/tools/k3bintmapcombobox.cpp b/libk3b/tools/k3bintmapcombobox.cpp
index cb5b2b3..c3db356 100644
--- a/libk3b/tools/k3bintmapcombobox.cpp
+++ b/libk3b/tools/k3bintmapcombobox.cpp
@@ -59,7 +59,7 @@ int K3bIntMapComboBox::selectedValue() const
void K3bIntMapComboBox::setSelectedValue( int value )
{
- if( d->valueIndexMap.tqcontains( value ) )
+ if( d->valueIndexMap.contains( value ) )
KComboBox::setCurrentItem( d->valueIndexMap[value] );
}
@@ -75,7 +75,7 @@ void K3bIntMapComboBox::clear()
bool K3bIntMapComboBox::insertItem( int value, const TQString& text, const TQString& description, int index )
{
- if( d->valueIndexMap.tqcontains( value ) )
+ if( d->valueIndexMap.contains( value ) )
return false;
// FIXME: allow inserition at any index