From 10308be19ef7fa44699562cc75946e7ea1fdf6b9 Mon Sep 17 00:00:00 2001 From: tpearson Date: Fri, 7 Jan 2011 03:45:53 +0000 Subject: Revert automated changes Sorry guys, they are just not ready for prime time Work will continue as always git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdeprint/util.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kdeprint/util.cpp') diff --git a/kdeprint/util.cpp b/kdeprint/util.cpp index 343f52d45..d95ca2c0c 100644 --- a/kdeprint/util.cpp +++ b/kdeprint/util.cpp @@ -44,11 +44,11 @@ KURL smbToUrl(const TQString& s) { // allow to handle non-encoded chars in login/password KURL url; - int p = s.tqfind('@'); + int p = s.find('@'); if (p == -1) { // assumes url starts with "smb://". Use encoding in - // case the printer name tqcontains chars like '#'. + // case the printer name contains chars like '#'. url = KURL("smb://" + KURL::encode_string(s.mid(6))); } else @@ -56,7 +56,7 @@ KURL smbToUrl(const TQString& s) // assumes URL starts with "smb://" QString username = s.mid(6, p-6); url = KURL("smb://" + KURL::encode_string(s.mid(p+1))); - int q = username.tqfind(':'); + int q = username.find(':'); if (q == -1) url.setUser(username); else @@ -68,7 +68,7 @@ KURL smbToUrl(const TQString& s) return url; } -int tqfindIndex(int ID) +int findIndex(int ID) { for (int i=0; i