diff options
Diffstat (limited to 'kabc/ldapclient.cpp')
-rw-r--r-- | kabc/ldapclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kabc/ldapclient.cpp b/kabc/ldapclient.cpp index 5ca506be8..6ce467a46 100644 --- a/kabc/ldapclient.cpp +++ b/kabc/ldapclient.cpp @@ -26,7 +26,7 @@ #include <tqimage.h> #include <tqlabel.h> #include <tqpixmap.h> -#include <textstream.h> +#include <tqtextstream.h> #include <tqurl.h> #include <kapplication.h> @@ -50,7 +50,7 @@ public: TQString LdapObject::toString() const { - TQString result = TQString::fromLatin1( "\ndn: %1\n" ).arg( dn ); + TQString result = TQString::tqfromLatin1( "\ndn: %1\n" ).arg( dn ); for ( LdapAttrMap::ConstIterator it = attrs.begin(); it != attrs.end(); ++it ) { TQString attr = it.key(); for ( LdapAttrValue::ConstIterator it2 = (*it).begin(); it2 != (*it).end(); ++it2 ) { |