diff options
Diffstat (limited to 'kabc/address.cpp')
-rw-r--r-- | kabc/address.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kabc/address.cpp b/kabc/address.cpp index 0787bcc4e..9ecf8eb2d 100644 --- a/kabc/address.cpp +++ b/kabc/address.cpp @@ -37,13 +37,13 @@ static KStaticDeleter< TQMap<TQString, TQString> > isoMapDeleter; Address::Address() : mEmpty( true ), mType( 0 ) { - mId = KApplication::randomString( 10 ); + mId = TDEApplication::randomString( 10 ); } Address::Address( int type ) : mEmpty( true ), mType( type ) { - mId = KApplication::randomString( 10 ); + mId = TDEApplication::randomString( 10 ); } bool Address::operator==( const Address &a ) const |