summaryrefslogtreecommitdiffstats
path: root/src/pluginselectdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pluginselectdialog.cpp')
-rw-r--r--src/pluginselectdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pluginselectdialog.cpp b/src/pluginselectdialog.cpp
index 18eef37d..e6973d79 100644
--- a/src/pluginselectdialog.cpp
+++ b/src/pluginselectdialog.cpp
@@ -137,7 +137,7 @@ void PluginSelectDialog::init( )
TQString Comment = (*it)->comment();
TQRegExp re("\\bhttp://[\\S]*");
re.search( Comment );
- Comment.tqreplace( re, "" );
+ Comment.replace( re, "" );
TQString url;
if ( re.pos() > -1 )
@@ -146,9 +146,9 @@ void PluginSelectDialog::init( )
}
PluginItem *item = new PluginItem( plugin_list, (*it)->desktopEntryName(), (*it)->genericName(), Comment, url );
- item->setOn( loadedPluginDesktopNames.tqcontains( (*it)->desktopEntryName() ) );
+ item->setOn( loadedPluginDesktopNames.contains( (*it)->desktopEntryName() ) );
- kdDebug(9000) << (*it)->desktopEntryName() << " : " << (loadedPluginDesktopNames.tqcontains( (*it)->desktopEntryName() ) ? "YES" : "NO" ) << endl;
+ kdDebug(9000) << (*it)->desktopEntryName() << " : " << (loadedPluginDesktopNames.contains( (*it)->desktopEntryName() ) ? "YES" : "NO" ) << endl;
}
TQListViewItem * first = plugin_list->firstChild();