diff options
Diffstat (limited to 'korn/kconf_update')
-rw-r--r-- | korn/kconf_update/korn-3-4-config_change.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/korn/kconf_update/korn-3-4-config_change.cpp b/korn/kconf_update/korn-3-4-config_change.cpp index 4d0c46679..7ff7a922c 100644 --- a/korn/kconf_update/korn-3-4-config_change.cpp +++ b/korn/kconf_update/korn-3-4-config_change.cpp @@ -188,7 +188,7 @@ int main( int, char** ) } else if( currentGroup1.isNull() || !isKey ) continue; - if( mapping1.tqcontains( key_value.cap( 1 ) ) ) + if( mapping1.contains( key_value.cap( 1 ) ) ) { out << currentGroup1 << endl; out << mapping1[ key_value.cap( 1 ) ] << "=" << key_value.cap( 2 ) << endl; @@ -198,7 +198,7 @@ int main( int, char** ) out << "name=" << key_value.cap( 2 ) << endl; } } - else if( mapping2.tqcontains( key_value.cap( 1 ) ) ) + else if( mapping2.contains( key_value.cap( 1 ) ) ) { to_printed.insert( key_value.cap( 1 ), key_value.cap( 2 ) ); } |