diff options
Diffstat (limited to 'kbabel/commonui/projectwizard.cpp')
-rw-r--r-- | kbabel/commonui/projectwizard.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kbabel/commonui/projectwizard.cpp b/kbabel/commonui/projectwizard.cpp index 5858195b..dc147c32 100644 --- a/kbabel/commonui/projectwizard.cpp +++ b/kbabel/commonui/projectwizard.cpp @@ -60,8 +60,8 @@ ProjectWizard::ProjectWizard(TQWidget *tqparent,const char *name) { // we need untranslated entries here, because of Translation Robot! TQString entry = (*it); - const int i = entry.tqfind('_'); - entry.tqreplace(0, i, entry.left(i).lower()); + const int i = entry.find('_'); + entry.replace(0, i, entry.left(i).lower()); all_languages.setGroup(entry); entry = all_languages.readEntryUntranslated("Name"); if( ! entry.isEmpty() ) |