summaryrefslogtreecommitdiffstats
path: root/src/modules/url/libkviurl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/url/libkviurl.cpp')
-rw-r--r--src/modules/url/libkviurl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/url/libkviurl.cpp b/src/modules/url/libkviurl.cpp
index abe3d79..9533eac 100644
--- a/src/modules/url/libkviurl.cpp
+++ b/src/modules/url/libkviurl.cpp
@@ -238,7 +238,7 @@ void UrlDialog::findtext()
for(KviUrl *tmp=g_pList->first();tmp;tmp=g_pList->next())
{
if (tmp->url == KviStr(m_pUrlList->currentItem()->text(0))) {
- g_pList->tqfind(tmp);
+ g_pList->find(tmp);
KviStr ft="findtext %";
ft.replaceAll('%',tmp->url.ptr());
KviWindow *wnd = m_pFrm->findWindow(tmp->window.ptr());
@@ -710,7 +710,7 @@ int check_url(KviWindow *w,const TQString &szUrl) // return 0 if no occurence of
for(KviStr *tmpi=g_pBanList->first();tmpi;tmpi=g_pBanList->next())
{
- if (szUrl.tqfind(TQString(tmpi->ptr())) != -1) tmp++;
+ if (szUrl.find(TQString(tmpi->ptr())) != -1) tmp++;
}
if (tmp > 0) return tmp;