diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 20:02:30 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-09-03 21:00:39 +0200 |
commit | c6cb3f27942501d24b0ded69c90ebbf7c43c755e (patch) | |
tree | 08aa592dea84d77931478751d69b47cb4d6b50ee /tdeabc | |
parent | f41d2ce0f1929574f3b65eef2675ac65177608f1 (diff) | |
download | tdelibs-c6cb3f27942501d24b0ded69c90ebbf7c43c755e.tar.gz tdelibs-c6cb3f27942501d24b0ded69c90ebbf7c43c755e.zip |
Additional k => tde renaming and fixes
Diffstat (limited to 'tdeabc')
131 files changed, 263 insertions, 263 deletions
diff --git a/tdeabc/HOWTO b/tdeabc/HOWTO index 5187f2580..1070ccd4c 100644 --- a/tdeabc/HOWTO +++ b/tdeabc/HOWTO @@ -5,13 +5,13 @@ The KDE address book framework tries to provide an easy to use and powerful mechanism to handle contacts in all KDE applications. If you want to make use of it, this small introduction to programming -with libkabc may be helpful. +with libtdeabc may be helpful. General Concepts ================= -In libkabc the storage and management of contacts is devided in 2 layers. +In libtdeabc the storage and management of contacts is devided in 2 layers. ****************** Management Layer * @@ -63,7 +63,7 @@ The Storage Layer The Storage Layer consists of the class TDEABC::Resource and its derived classes. These classes are used by TDEABC::AddressBook to load and store the contacts to the single backends. -At the moment libkabc provides 4 types of resources: +At the moment libtdeabc provides 4 types of resources: 1) ResourceFile - stores all contacts in a single file @@ -76,7 +76,7 @@ At the moment libkabc provides 4 types of resources: 4) ResourceNet - stores all contacts in a single file, which can be accessable via HTTP, - FTP, Fish, WebDAV, POP3, IMAP or whatever the KIO frame work supports + FTP, Fish, WebDAV, POP3, IMAP or whatever the TDEIO frame work supports In general the developer does not have to take how to save the single contacts. He just has to plug one of the above mentioned resources into TDEABC::AddressBook @@ -85,7 +85,7 @@ and perform a save action. Examples ========= Like a picture, C/C++ code is worth a 1000 words I'd like to give you a -lot of examples now, how to use libkabc for several tasks: +lot of examples now, how to use libtdeabc for several tasks: Using TDEABC::StdAddressBook and Iterators @@ -217,7 +217,7 @@ The following code will create a file resource and save a contact into it: In line 1 the TDEABC::AddressBook is created. In line 4 you creat the TDEABC::ResourceFile (which will handle the loading/saving). The resource takes 2 arguments, the first is the file name and the -second one the file format. At the moment libkabc supports two file formats: +second one the file format. At the moment libtdeabc supports two file formats: 1) vCard, as specified in RFC 2426 2) Binary, which increases performance during loading and saving @@ -262,7 +262,7 @@ From 49 - 50 we insert 2 email addresses with the first one as preferred (second argument is true). In 53 and the following 3 lines we add two telephone numbers. For this purpose -libkabc provides the TDEABC::PhoneNumber class, which takes the phone number in +libtdeabc provides the TDEABC::PhoneNumber class, which takes the phone number in string representation as first argument and the type as second. The types can be combined, so 'TDEABC::PhoneNumber::Home | TDEABC::PhoneNumber::Fax' would be the Home Fax. @@ -312,7 +312,7 @@ please take a look at the official API documentation or the header files. Distribution Lists ------------------- -libkabc provides so called distribution lists to group contacts. These lists +libtdeabc provides so called distribution lists to group contacts. These lists just store the uid of contacts, so they can be used for every kind of contact grouping. There are 2 classes which handle the whole distribution list tasks, TDEABC::DistributionListManager and TDEABC::DistributionList. The first one keeps diff --git a/tdeabc/Makefile.am b/tdeabc/Makefile.am index a1f1d1b74..288e6101d 100644 --- a/tdeabc/Makefile.am +++ b/tdeabc/Makefile.am @@ -21,7 +21,7 @@ CLEANFILES = addressee.h addressee.cpp field.cpp lib_LTLIBRARIES = libtdeabc.la libtdeabc_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) -version-info 3:0:2 -no-undefined -libtdeabc_la_LIBADD = vcard/libvcard.la vcardparser/libvcards.la $(LIB_KIO) \ +libtdeabc_la_LIBADD = vcard/libvcard.la vcardparser/libvcards.la $(LIB_TDEIO) \ $(top_builddir)/tderesources/libtderesources.la $(LIB_QT) $(top_builddir)/dcop/libDCOP.la $(LIB_TDEUI) $(LIB_TDECORE) libtdeabc_la_COMPILE_FIRST = addressee.h @@ -52,7 +52,7 @@ METASOURCES = AUTO bin_PROGRAMS = tdeab2tdeabc -tdeab2tdeabc_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +tdeab2tdeabc_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor tdeab2tdeabc_LDADD = libtdeabc.la ../kab/libkab.la tdeab2tdeabc_SOURCES = tdeab2tdeabc.cpp diff --git a/tdeabc/README b/tdeabc/README index 46d21b9b6..3bb6f8fcd 100644 --- a/tdeabc/README +++ b/tdeabc/README @@ -2,7 +2,7 @@ LIBKABC - new address book API for KDE PURPOSE: -libkabc provides an API for address book data. This can be used by all KDE +libtdeabc provides an API for address book data. This can be used by all KDE application using data of this type, e.g. KAddressBook, KMail, KOrganizer, KPilot etc. It is meant as replacement for libkab (in tdebase/kab). @@ -18,7 +18,7 @@ FEATURES: selection, supports automatic name completion. - GUI client for viewing, modifying address book data. This is aimed at developers not end users. -- Tool for converting data, written with libkab, to libkabc format. +- Tool for converting data, written with libkab, to libtdeabc format. - Multiple backends (resources) for storing entries e.g. LDAP AUTHOR: Cornelius Schumacher <schumacher@kde.org> diff --git a/tdeabc/README.AddressFormat b/tdeabc/README.AddressFormat index 8079e4914..ec8d3ede6 100644 --- a/tdeabc/README.AddressFormat +++ b/tdeabc/README.AddressFormat @@ -1,4 +1,4 @@ -Address formats can be a tricky thing. libkabc tries very hard to perfectly fit +Address formats can be a tricky thing. libtdeabc tries very hard to perfectly fit the needs of ~95% of users and to be at least sufficient for the other 5%. The formatting of an address depends on the destination country as well as on @@ -15,7 +15,7 @@ format in a field "AddressFormat". Note that for most countries one field however, in some countries (eg. Hungary) business addresses differ in their structure. In this case you have the possibility of adding another field "BusinessAddressFormat" which will be preferred for formatting of business -addresses; if libkabc can't find such a field, it will fall back to +addresses; if libtdeabc can't find such a field, it will fall back to "AddressFormat". (Please use BusinessAddressFormat ONLY if you really need to) The format consists mainly of tags that will be replaced by address fields. diff --git a/tdeabc/address.cpp b/tdeabc/address.cpp index e5305f5a0..80dea4e61 100644 --- a/tdeabc/address.cpp +++ b/tdeabc/address.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/address.h b/tdeabc/address.h index 796be25a0..7cb676bc6 100644 --- a/tdeabc/address.h +++ b/tdeabc/address.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/addressbook.cpp b/tdeabc/addressbook.cpp index 3a8a71f2b..b9d239ef4 100644 --- a/tdeabc/addressbook.cpp +++ b/tdeabc/addressbook.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/addressbook.h b/tdeabc/addressbook.h index 09d18d6bb..5a3d1a45a 100644 --- a/tdeabc/addressbook.h +++ b/tdeabc/addressbook.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/addresseedialog.cpp b/tdeabc/addresseedialog.cpp index 028d178b0..26c87d8b8 100644 --- a/tdeabc/addresseedialog.cpp +++ b/tdeabc/addresseedialog.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/addresseedialog.h b/tdeabc/addresseedialog.h index 718aa61da..f94b49b71 100644 --- a/tdeabc/addresseedialog.h +++ b/tdeabc/addresseedialog.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/addresseehelper.cpp b/tdeabc/addresseehelper.cpp index f752788dd..efbee6c47 100644 --- a/tdeabc/addresseehelper.cpp +++ b/tdeabc/addresseehelper.cpp @@ -81,7 +81,7 @@ void AddresseeHelper::initSettings() mPrefixes.insert( "von" ); mPrefixes.insert( "de" ); - TDEConfig config( "kabcrc", true, false ); // readonly, no kdeglobals + TDEConfig config( "tdeabcrc", true, false ); // readonly, no kdeglobals config.setGroup( "General" ); addToSet( config.readListEntry( "Prefixes" ), mTitles ); diff --git a/tdeabc/addresseelist.cpp b/tdeabc/addresseelist.cpp index 4787c65aa..5a4aa609b 100644 --- a/tdeabc/addresseelist.cpp +++ b/tdeabc/addresseelist.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Jost Schenck <jost@schenck.de> 2003 Tobias Koenig <tokoe@kde.org> diff --git a/tdeabc/addresseelist.h b/tdeabc/addresseelist.h index bebe0a460..7825a0c2c 100644 --- a/tdeabc/addresseelist.h +++ b/tdeabc/addresseelist.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Jost Schenck <jost@schenck.de> 2003 Tobias Koenig <tokoe@kde.org> diff --git a/tdeabc/addresslineedit.cpp b/tdeabc/addresslineedit.cpp index 8194f8ca3..93a327889 100644 --- a/tdeabc/addresslineedit.cpp +++ b/tdeabc/addresslineedit.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Helge Deller <deller@gmx.de> 2002 Lubos Lunak <llunak@suse.cz> 2001,2003 Carsten Pfeiffer <pfeiffer@kde.org> diff --git a/tdeabc/addresslineedit.h b/tdeabc/addresslineedit.h index ee10b5bbd..b8f83ceab 100644 --- a/tdeabc/addresslineedit.h +++ b/tdeabc/addresslineedit.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Helge Deller <deller@gmx.de> 2002 Lubos Lunak <llunak@suse.cz> @@ -37,7 +37,7 @@ namespace TDEABC { class LdapSearch; /** - * A lineedit with LDAP and kabc completion + * A lineedit with LDAP and tdeabc completion * * This lineedit is supposed to be used wherever the user types email addresses * and might want a completion. You can simply use it as a replacement for diff --git a/tdeabc/agent.cpp b/tdeabc/agent.cpp index 2b2747697..6c3f140ef 100644 --- a/tdeabc/agent.cpp +++ b/tdeabc/agent.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/agent.h b/tdeabc/agent.h index b982456c5..a9598936c 100644 --- a/tdeabc/agent.h +++ b/tdeabc/agent.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/distributionlist.cpp b/tdeabc/distributionlist.cpp index e811c4d65..7c55fccd6 100644 --- a/tdeabc/distributionlist.cpp +++ b/tdeabc/distributionlist.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/distributionlist.h b/tdeabc/distributionlist.h index 0c2bdf0bd..44de7f0d3 100644 --- a/tdeabc/distributionlist.h +++ b/tdeabc/distributionlist.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/distributionlistdialog.cpp b/tdeabc/distributionlistdialog.cpp index c440fcb4c..04578e19a 100644 --- a/tdeabc/distributionlistdialog.cpp +++ b/tdeabc/distributionlistdialog.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/distributionlistdialog.h b/tdeabc/distributionlistdialog.h index d4286a54b..0270c3605 100644 --- a/tdeabc/distributionlistdialog.h +++ b/tdeabc/distributionlistdialog.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/distributionlisteditor.cpp b/tdeabc/distributionlisteditor.cpp index 76fd35568..215382f62 100644 --- a/tdeabc/distributionlisteditor.cpp +++ b/tdeabc/distributionlisteditor.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/distributionlisteditor.h b/tdeabc/distributionlisteditor.h index 6da6495f8..815499fac 100644 --- a/tdeabc/distributionlisteditor.h +++ b/tdeabc/distributionlisteditor.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/errorhandler.cpp b/tdeabc/errorhandler.cpp index 3208b84c9..5bf327ac5 100644 --- a/tdeabc/errorhandler.cpp +++ b/tdeabc/errorhandler.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> @@ -39,7 +39,7 @@ void ConsoleErrorHandler::error( const TQString &msg ) void GUIErrorHandler::error( const TQString &msg ) { - KMessageBox::error( 0, msg, i18n( "Error in libkabc" ) ); + KMessageBox::error( 0, msg, i18n( "Error in libtdeabc" ) ); } diff --git a/tdeabc/errorhandler.h b/tdeabc/errorhandler.h index d3d3f253d..9785ff87c 100644 --- a/tdeabc/errorhandler.h +++ b/tdeabc/errorhandler.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> @@ -32,7 +32,7 @@ namespace TDEABC { /** Abstract class that provides displaying of error messages. - We need this to make libkabc gui independent on the one side + We need this to make libtdeabc gui independent on the one side and provide user friendly error messages on the other side. Use @p ConsoleErrorHandler or @p GuiErrorHandler in your application or provide your own ErrorHandler. diff --git a/tdeabc/field.h b/tdeabc/field.h index 08322ecf5..0619dcbf0 100644 --- a/tdeabc/field.h +++ b/tdeabc/field.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/format.h b/tdeabc/format.h index 77c2edcc5..4323de174 100644 --- a/tdeabc/format.h +++ b/tdeabc/format.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/formatfactory.cpp b/tdeabc/formatfactory.cpp index 4839acc4d..921a960c4 100644 --- a/tdeabc/formatfactory.cpp +++ b/tdeabc/formatfactory.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/formatfactory.h b/tdeabc/formatfactory.h index 0994fe109..cf9eb5f88 100644 --- a/tdeabc/formatfactory.h +++ b/tdeabc/formatfactory.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/formatplugin.h b/tdeabc/formatplugin.h index c6fb59858..2eb6082b8 100644 --- a/tdeabc/formatplugin.h +++ b/tdeabc/formatplugin.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/formats/binaryformat.cpp b/tdeabc/formats/binaryformat.cpp index 15dbec8a8..dcb49330e 100644 --- a/tdeabc/formats/binaryformat.cpp +++ b/tdeabc/formats/binaryformat.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/formats/binaryformat.h b/tdeabc/formats/binaryformat.h index faf6c8e5a..d0ae43c0f 100644 --- a/tdeabc/formats/binaryformat.h +++ b/tdeabc/formats/binaryformat.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/geo.cpp b/tdeabc/geo.cpp index 9883595a4..2adf3f033 100644 --- a/tdeabc/geo.cpp +++ b/tdeabc/geo.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/geo.h b/tdeabc/geo.h index 55cf18680..f9633af88 100644 --- a/tdeabc/geo.h +++ b/tdeabc/geo.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/key.cpp b/tdeabc/key.cpp index d4456f516..5f76d9c79 100644 --- a/tdeabc/key.cpp +++ b/tdeabc/key.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/key.h b/tdeabc/key.h index 94d1a28b3..c6483b835 100644 --- a/tdeabc/key.h +++ b/tdeabc/key.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/ldapconfigwidget.cpp b/tdeabc/ldapconfigwidget.cpp index 6e339cb2c..2c2dfbe75 100644 --- a/tdeabc/ldapconfigwidget.cpp +++ b/tdeabc/ldapconfigwidget.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu> This library is free software; you can redistribute it and/or diff --git a/tdeabc/ldapconfigwidget.h b/tdeabc/ldapconfigwidget.h index 662534fd6..ed39bb776 100644 --- a/tdeabc/ldapconfigwidget.h +++ b/tdeabc/ldapconfigwidget.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu> This library is free software; you can redistribute it and/or diff --git a/tdeabc/ldapurl.cpp b/tdeabc/ldapurl.cpp index 95363efaf..c20dbd39e 100644 --- a/tdeabc/ldapurl.cpp +++ b/tdeabc/ldapurl.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu> This library is free software; you can redistribute it and/or diff --git a/tdeabc/ldapurl.h b/tdeabc/ldapurl.h index f86c8a466..9a189655e 100644 --- a/tdeabc/ldapurl.h +++ b/tdeabc/ldapurl.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu> This library is free software; you can redistribute it and/or diff --git a/tdeabc/ldif.cpp b/tdeabc/ldif.cpp index a40f5a818..cbf94c637 100644 --- a/tdeabc/ldif.cpp +++ b/tdeabc/ldif.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu> This library is free software; you can redistribute it and/or diff --git a/tdeabc/ldif.h b/tdeabc/ldif.h index 6cbc536e8..9e07e2a5f 100644 --- a/tdeabc/ldif.h +++ b/tdeabc/ldif.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2004 Szombathelyi Gyorgy <gyurco@freemail.hu> This library is free software; you can redistribute it and/or diff --git a/tdeabc/ldifconverter.cpp b/tdeabc/ldifconverter.cpp index 8338f5ba0..1527b4893 100644 --- a/tdeabc/ldifconverter.cpp +++ b/tdeabc/ldifconverter.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Helge Deller <deller@kde.org> This library is free software; you can redistribute it and/or @@ -142,7 +142,7 @@ bool LDIFConverter::addresseeToLDIF( const Addressee &addr, TQString &str ) ldif_out( t, "organization", addr.organization() ); ldif_out( t, "organizationname", addr.organization() ); - // Compatibility with older kabc versions. + // Compatibility with older tdeabc versions. if ( !addr.department().isEmpty() ) ldif_out( t, "department", addr.department() ); else @@ -321,7 +321,7 @@ addComment: } if ( a.url().prettyURL() == KURL(value).prettyURL() ) return true; - // TODO: current version of kabc only supports one URL. + // TODO: current version of tdeabc only supports one URL. // TODO: change this with KDE 4 } diff --git a/tdeabc/ldifconverter.h b/tdeabc/ldifconverter.h index 8788136b3..30c8889d6 100644 --- a/tdeabc/ldifconverter.h +++ b/tdeabc/ldifconverter.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Helge Deller <deller@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/lock.cpp b/tdeabc/lock.cpp index 782b60afa..2e2ee7894 100644 --- a/tdeabc/lock.cpp +++ b/tdeabc/lock.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001,2003 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/lock.h b/tdeabc/lock.h index 0b4c2ffe0..d4d04532a 100644 --- a/tdeabc/lock.h +++ b/tdeabc/lock.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001,2003 Cornelius Schumacher <schumacher@kde.org> diff --git a/tdeabc/locknull.cpp b/tdeabc/locknull.cpp index c38bda0ce..09752b825 100644 --- a/tdeabc/locknull.cpp +++ b/tdeabc/locknull.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> diff --git a/tdeabc/locknull.h b/tdeabc/locknull.h index fdc6e9aab..62d177fdd 100644 --- a/tdeabc/locknull.h +++ b/tdeabc/locknull.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> diff --git a/tdeabc/phonenumber.cpp b/tdeabc/phonenumber.cpp index f6022052c..642196f5f 100644 --- a/tdeabc/phonenumber.cpp +++ b/tdeabc/phonenumber.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/phonenumber.h b/tdeabc/phonenumber.h index 737f57ff8..641ee6b1f 100644 --- a/tdeabc/phonenumber.h +++ b/tdeabc/phonenumber.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/picture.cpp b/tdeabc/picture.cpp index 057be604c..5fee62f6f 100644 --- a/tdeabc/picture.cpp +++ b/tdeabc/picture.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/picture.h b/tdeabc/picture.h index ca8f086ed..af1ee4562 100644 --- a/tdeabc/picture.h +++ b/tdeabc/picture.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugin.cpp b/tdeabc/plugin.cpp index 9c1453bc5..779f8be61 100644 --- a/tdeabc/plugin.cpp +++ b/tdeabc/plugin.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugin.h b/tdeabc/plugin.h index b242e5a8c..8734acd13 100644 --- a/tdeabc/plugin.h +++ b/tdeabc/plugin.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/dir/Makefile.am b/tdeabc/plugins/dir/Makefile.am index d054bbaf9..95fcfe2c8 100644 --- a/tdeabc/plugins/dir/Makefile.am +++ b/tdeabc/plugins/dir/Makefile.am @@ -19,8 +19,8 @@ METASOURCES = AUTO messages: rc.cpp $(XGETTEXT) *.cpp -o $(podir)/tdeabc_dir.pot -kabcincludedir = $(includedir)/tdeabc -kabcinclude_HEADERS = resourcedir.h +tdeabcincludedir = $(includedir)/tdeabc +tdeabcinclude_HEADERS = resourcedir.h servicedir = $(kde_servicesdir)/tderesources/tdeabc service_DATA = dir.desktop diff --git a/tdeabc/plugins/dir/resourcedir.cpp b/tdeabc/plugins/dir/resourcedir.cpp index eaf774066..304f585f0 100644 --- a/tdeabc/plugins/dir/resourcedir.cpp +++ b/tdeabc/plugins/dir/resourcedir.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 - 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/dir/resourcedir.h b/tdeabc/plugins/dir/resourcedir.h index 035b8a6ae..dc9d1d06a 100644 --- a/tdeabc/plugins/dir/resourcedir.h +++ b/tdeabc/plugins/dir/resourcedir.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 - 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/dir/resourcedirconfig.cpp b/tdeabc/plugins/dir/resourcedirconfig.cpp index 212ef6156..91512cfa6 100644 --- a/tdeabc/plugins/dir/resourcedirconfig.cpp +++ b/tdeabc/plugins/dir/resourcedirconfig.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/dir/resourcedirconfig.h b/tdeabc/plugins/dir/resourcedirconfig.h index 98efd76d0..51fac5812 100644 --- a/tdeabc/plugins/dir/resourcedirconfig.h +++ b/tdeabc/plugins/dir/resourcedirconfig.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/dir/resourcedirplugin.cpp b/tdeabc/plugins/dir/resourcedirplugin.cpp index 5662a7062..028dce31c 100644 --- a/tdeabc/plugins/dir/resourcedirplugin.cpp +++ b/tdeabc/plugins/dir/resourcedirplugin.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 - 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/evolution/Makefile.am b/tdeabc/plugins/evolution/Makefile.am index 67a5a64b8..14c608440 100644 --- a/tdeabc/plugins/evolution/Makefile.am +++ b/tdeabc/plugins/evolution/Makefile.am @@ -8,7 +8,7 @@ kde_module_LTLIBRARIES = tdeabc_evo.la tdeabc_evo_la_SOURCES = dbwrapper.cpp resourceevo.cpp tdeabc_evo_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -tdeabc_evo_la_LIBADD = ../../../tdeabc/libkabc.la ../../../tdeui/libtdeui.la -ldb ../../../tdeabc/vcardparser/libvcards.la +tdeabc_evo_la_LIBADD = ../../../tdeabc/libtdeabc.la ../../../tdeui/libtdeui.la -ldb ../../../tdeabc/vcardparser/libvcards.la METASOURCES = AUTO diff --git a/tdeabc/plugins/file/Makefile.am b/tdeabc/plugins/file/Makefile.am index 475fcd4dc..beda9a00b 100644 --- a/tdeabc/plugins/file/Makefile.am +++ b/tdeabc/plugins/file/Makefile.am @@ -21,8 +21,8 @@ METASOURCES = AUTO messages: rc.cpp $(XGETTEXT) *.cpp -o $(podir)/tdeabc_file.pot -kabcincludedir = $(includedir)/tdeabc -kabcinclude_HEADERS = resourcefile.h +tdeabcincludedir = $(includedir)/tdeabc +tdeabcinclude_HEADERS = resourcefile.h servicedir = $(kde_servicesdir)/tderesources/tdeabc service_DATA = file.desktop diff --git a/tdeabc/plugins/file/resourcefile.cpp b/tdeabc/plugins/file/resourcefile.cpp index 4df5db42c..ad4e8c466 100644 --- a/tdeabc/plugins/file/resourcefile.cpp +++ b/tdeabc/plugins/file/resourcefile.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001,2003 Cornelius Schumacher <schumacher@kde.org> Copyright (c) 2006 Tom Abers <tomalbers@kde.nl> diff --git a/tdeabc/plugins/file/resourcefile.h b/tdeabc/plugins/file/resourcefile.h index 76652d179..ffa19a4bf 100644 --- a/tdeabc/plugins/file/resourcefile.h +++ b/tdeabc/plugins/file/resourcefile.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/file/resourcefileconfig.cpp b/tdeabc/plugins/file/resourcefileconfig.cpp index 516a33a61..2c8e0fce6 100644 --- a/tdeabc/plugins/file/resourcefileconfig.cpp +++ b/tdeabc/plugins/file/resourcefileconfig.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/file/resourcefileconfig.h b/tdeabc/plugins/file/resourcefileconfig.h index e7b8ca9ea..3be4cca49 100644 --- a/tdeabc/plugins/file/resourcefileconfig.h +++ b/tdeabc/plugins/file/resourcefileconfig.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/file/resourcefileplugin.cpp b/tdeabc/plugins/file/resourcefileplugin.cpp index 5a44f76ca..6f7598a40 100644 --- a/tdeabc/plugins/file/resourcefileplugin.cpp +++ b/tdeabc/plugins/file/resourcefileplugin.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/ldaptdeio/Makefile.am b/tdeabc/plugins/ldaptdeio/Makefile.am index 205c412ce..085bf7712 100644 --- a/tdeabc/plugins/ldaptdeio/Makefile.am +++ b/tdeabc/plugins/ldaptdeio/Makefile.am @@ -6,7 +6,7 @@ noinst_HEADERS = resourceldaptdeioconfig.h lib_LTLIBRARIES = libtdeabc_ldaptdeio.la libtdeabc_ldaptdeio_la_SOURCES = resourceldaptdeio.cpp resourceldaptdeioconfig.cpp libtdeabc_ldaptdeio_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) -version-info 1:0:0 -no-undefined -libtdeabc_ldaptdeio_la_LIBADD = $(LIB_TDEABC) $(LIB_KIO) $(LIB_QT) $(top_builddir)/tderesources/libtderesources.la $(LIB_TDEUI) $(LIB_TDECORE) +libtdeabc_ldaptdeio_la_LIBADD = $(LIB_TDEABC) $(LIB_TDEIO) $(LIB_QT) $(top_builddir)/tderesources/libtderesources.la $(LIB_TDEUI) $(LIB_TDECORE) libtdeabc_ldaptdeio_la_COMPILE_FIRST = $(top_builddir)/tdeabc/addressee.h kde_module_LTLIBRARIES = tdeabc_ldaptdeio.la @@ -19,8 +19,8 @@ METASOURCES = AUTO messages: rc.cpp $(XGETTEXT) *.cpp -o $(podir)/tdeabc_ldaptdeio.pot -kabcincludedir = $(includedir)/tdeabc -kabcinclude_HEADERS = resourceldaptdeio.h +tdeabcincludedir = $(includedir)/tdeabc +tdeabcinclude_HEADERS = resourceldaptdeio.h servicedir = $(kde_servicesdir)/tderesources/tdeabc service_DATA = ldaptdeio.desktop diff --git a/tdeabc/plugins/ldaptdeio/resourceldaptdeio.cpp b/tdeabc/plugins/ldaptdeio/resourceldaptdeio.cpp index 0e182755a..ed6675392 100644 --- a/tdeabc/plugins/ldaptdeio/resourceldaptdeio.cpp +++ b/tdeabc/plugins/ldaptdeio/resourceldaptdeio.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu> diff --git a/tdeabc/plugins/ldaptdeio/resourceldaptdeio.h b/tdeabc/plugins/ldaptdeio/resourceldaptdeio.h index 051470960..8f0565c3e 100644 --- a/tdeabc/plugins/ldaptdeio/resourceldaptdeio.h +++ b/tdeabc/plugins/ldaptdeio/resourceldaptdeio.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu> diff --git a/tdeabc/plugins/ldaptdeio/resourceldaptdeioconfig.cpp b/tdeabc/plugins/ldaptdeio/resourceldaptdeioconfig.cpp index 25099414c..429e6b494 100644 --- a/tdeabc/plugins/ldaptdeio/resourceldaptdeioconfig.cpp +++ b/tdeabc/plugins/ldaptdeio/resourceldaptdeioconfig.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 - 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/ldaptdeio/resourceldaptdeioconfig.h b/tdeabc/plugins/ldaptdeio/resourceldaptdeioconfig.h index 0041946b7..d56b4de31 100644 --- a/tdeabc/plugins/ldaptdeio/resourceldaptdeioconfig.h +++ b/tdeabc/plugins/ldaptdeio/resourceldaptdeioconfig.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 - 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/ldaptdeio/resourceldaptdeioplugin.cpp b/tdeabc/plugins/ldaptdeio/resourceldaptdeioplugin.cpp index dcb373b3c..6046e9ae2 100644 --- a/tdeabc/plugins/ldaptdeio/resourceldaptdeioplugin.cpp +++ b/tdeabc/plugins/ldaptdeio/resourceldaptdeioplugin.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/net/Makefile.am b/tdeabc/plugins/net/Makefile.am index 8fd53f34f..e738d55e7 100644 --- a/tdeabc/plugins/net/Makefile.am +++ b/tdeabc/plugins/net/Makefile.am @@ -6,7 +6,7 @@ noinst_HEADERS = resourcenetconfig.h lib_LTLIBRARIES = libtdeabc_net.la libtdeabc_net_la_SOURCES = resourcenet.cpp resourcenetconfig.cpp libtdeabc_net_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) -version-info 1:0:0 -no-undefined -libtdeabc_net_la_LIBADD = $(top_builddir)/tdeabc/libkabc.la $(LIB_KIO) +libtdeabc_net_la_LIBADD = $(top_builddir)/tdeabc/libtdeabc.la $(LIB_TDEIO) libtdeabc_net_la_COMPILE_FIRST = $(top_builddir)/tdeabc/addressee.h kde_module_LTLIBRARIES = tdeabc_net.la @@ -19,8 +19,8 @@ METASOURCES = AUTO messages: rc.cpp $(XGETTEXT) *.cpp -o $(podir)/tdeabc_net.pot -kabcincludedir = $(includedir)/tdeabc -kabcinclude_HEADERS = resourcenet.h +tdeabcincludedir = $(includedir)/tdeabc +tdeabcinclude_HEADERS = resourcenet.h servicedir = $(kde_servicesdir)/tderesources/tdeabc service_DATA = net.desktop diff --git a/tdeabc/plugins/net/resourcenet.cpp b/tdeabc/plugins/net/resourcenet.cpp index 390e84224..cb908cd22 100644 --- a/tdeabc/plugins/net/resourcenet.cpp +++ b/tdeabc/plugins/net/resourcenet.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/net/resourcenet.h b/tdeabc/plugins/net/resourcenet.h index 18a3b715b..e190c63c8 100644 --- a/tdeabc/plugins/net/resourcenet.h +++ b/tdeabc/plugins/net/resourcenet.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/net/resourcenetconfig.cpp b/tdeabc/plugins/net/resourcenetconfig.cpp index ab3cddf3e..98504788b 100644 --- a/tdeabc/plugins/net/resourcenetconfig.cpp +++ b/tdeabc/plugins/net/resourcenetconfig.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/net/resourcenetconfig.h b/tdeabc/plugins/net/resourcenetconfig.h index f2ba37800..513c77de2 100644 --- a/tdeabc/plugins/net/resourcenetconfig.h +++ b/tdeabc/plugins/net/resourcenetconfig.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/net/resourcenetplugin.cpp b/tdeabc/plugins/net/resourcenetplugin.cpp index 8db397152..cd87cc000 100644 --- a/tdeabc/plugins/net/resourcenetplugin.cpp +++ b/tdeabc/plugins/net/resourcenetplugin.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/sql/Makefile.am b/tdeabc/plugins/sql/Makefile.am index 43dd193f6..12bce32be 100644 --- a/tdeabc/plugins/sql/Makefile.am +++ b/tdeabc/plugins/sql/Makefile.am @@ -8,7 +8,7 @@ kde_module_LTLIBRARIES = tdeabc_sql.la tdeabc_sql_la_SOURCES = resourcesql.cpp resourcesqlconfig.cpp tdeabc_sql_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -tdeabc_sql_la_LIBADD = ../../libkabc.la ../../../tdeui/libtdeui.la +tdeabc_sql_la_LIBADD = ../../libtdeabc.la ../../../tdeui/libtdeui.la METASOURCES = AUTO diff --git a/tdeabc/plugins/sql/resourcesql.cpp b/tdeabc/plugins/sql/resourcesql.cpp index ed284cdc5..9635dd77b 100644 --- a/tdeabc/plugins/sql/resourcesql.cpp +++ b/tdeabc/plugins/sql/resourcesql.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/sql/resourcesql.h b/tdeabc/plugins/sql/resourcesql.h index b7c82e6b0..7ce26956c 100644 --- a/tdeabc/plugins/sql/resourcesql.h +++ b/tdeabc/plugins/sql/resourcesql.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/sql/resourcesqlconfig.cpp b/tdeabc/plugins/sql/resourcesqlconfig.cpp index 34a678aca..4394066c7 100644 --- a/tdeabc/plugins/sql/resourcesqlconfig.cpp +++ b/tdeabc/plugins/sql/resourcesqlconfig.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/plugins/sql/resourcesqlconfig.h b/tdeabc/plugins/sql/resourcesqlconfig.h index f9b2c0a61..e0c08880c 100644 --- a/tdeabc/plugins/sql/resourcesqlconfig.h +++ b/tdeabc/plugins/sql/resourcesqlconfig.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/resource.cpp b/tdeabc/resource.cpp index 4128db82c..ffa1a40e3 100644 --- a/tdeabc/resource.cpp +++ b/tdeabc/resource.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/resource.h b/tdeabc/resource.h index 620d9ec47..5e9d9cb0d 100644 --- a/tdeabc/resource.h +++ b/tdeabc/resource.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/resourceselectdialog.cpp b/tdeabc/resourceselectdialog.cpp index 1b9d1a40d..a12e83611 100644 --- a/tdeabc/resourceselectdialog.cpp +++ b/tdeabc/resourceselectdialog.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/resourceselectdialog.h b/tdeabc/resourceselectdialog.h index 5065a3c82..1d820ece1 100644 --- a/tdeabc/resourceselectdialog.h +++ b/tdeabc/resourceselectdialog.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/scripts/addressee.src.cpp b/tdeabc/scripts/addressee.src.cpp index c090f7e4e..3fec361f2 100644 --- a/tdeabc/scripts/addressee.src.cpp +++ b/tdeabc/scripts/addressee.src.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> Copyright (c) 2003 Carsten Pfeiffer <pfeiffer@kde.org> Copyright (c) 2005 Ingo Kloecker <kloecker@kde.org> diff --git a/tdeabc/scripts/addressee.src.h b/tdeabc/scripts/addressee.src.h index aa449112e..79255f6ee 100644 --- a/tdeabc/scripts/addressee.src.h +++ b/tdeabc/scripts/addressee.src.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/scripts/field.src.cpp b/tdeabc/scripts/field.src.cpp index a87d00679..b7eb3ea5d 100644 --- a/tdeabc/scripts/field.src.cpp +++ b/tdeabc/scripts/field.src.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/secrecy.cpp b/tdeabc/secrecy.cpp index 3fe33f17d..de4392073 100644 --- a/tdeabc/secrecy.cpp +++ b/tdeabc/secrecy.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/secrecy.h b/tdeabc/secrecy.h index 596d1b675..b7a87d952 100644 --- a/tdeabc/secrecy.h +++ b/tdeabc/secrecy.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/sortmode.cpp b/tdeabc/sortmode.cpp index 1fef420eb..4d1881341 100644 --- a/tdeabc/sortmode.cpp +++ b/tdeabc/sortmode.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2004 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/sortmode.h b/tdeabc/sortmode.h index 49f3490ba..7cbafbb6f 100644 --- a/tdeabc/sortmode.h +++ b/tdeabc/sortmode.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2004 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/sound.cpp b/tdeabc/sound.cpp index fbdadd2d2..470020378 100644 --- a/tdeabc/sound.cpp +++ b/tdeabc/sound.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/sound.h b/tdeabc/sound.h index 4602c9ed6..3ee64ac57 100644 --- a/tdeabc/sound.h +++ b/tdeabc/sound.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/stdaddressbook.cpp b/tdeabc/stdaddressbook.cpp index c0789f215..73343d8a9 100644 --- a/tdeabc/stdaddressbook.cpp +++ b/tdeabc/stdaddressbook.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or @@ -188,7 +188,7 @@ bool StdAddressBook::automaticSave() // should get const for 4.X Addressee StdAddressBook::whoAmI() { - TDEConfig config( "kabcrc" ); + TDEConfig config( "tdeabcrc" ); config.setGroup( "General" ); return findByUid( config.readEntry( "WhoAmI" ) ); @@ -196,7 +196,7 @@ Addressee StdAddressBook::whoAmI() void StdAddressBook::setWhoAmI( const Addressee &addr ) { - TDEConfig config( "kabcrc" ); + TDEConfig config( "tdeabcrc" ); config.setGroup( "General" ); config.writeEntry( "WhoAmI", addr.uid() ); diff --git a/tdeabc/stdaddressbook.h b/tdeabc/stdaddressbook.h index 86804a91e..290999d66 100644 --- a/tdeabc/stdaddressbook.h +++ b/tdeabc/stdaddressbook.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/tdeab2tdeabc.cpp b/tdeabc/tdeab2tdeabc.cpp index 20aef735c..e346d9c7a 100644 --- a/tdeabc/tdeab2tdeabc.cpp +++ b/tdeabc/tdeab2tdeabc.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or @@ -292,7 +292,7 @@ void importKab( TDEABC::AddressBook *ab, bool override, bool quiet ) } kdDebug(5700) << "Converting old-style kab addressbook to " - "new-style kabc addressbook." << endl; + "new-style tdeabc addressbook." << endl; KabAPI kab( 0 ); if ( kab.init() != ::AddressBook::NoError ) { @@ -463,14 +463,14 @@ int main( int argc, char **argv ) config->writeEntry( "EnableAutostart", false ); } - TDEABC::AddressBook *kabcBook = StdAddressBook::self(); + TDEABC::AddressBook *tdeabcBook = StdAddressBook::self(); - importKMailAddressBook( kabcBook ); + importKMailAddressBook( tdeabcBook ); - importKab( kabcBook, override, quiet ); + importKab( tdeabcBook, override, quiet ); StdAddressBook::save(); - kdDebug(5700) << "Saved kabc addressbook to '" << kabcBook->identifier() << "'" << endl; + kdDebug(5700) << "Saved tdeabc addressbook to '" << tdeabcBook->identifier() << "'" << endl; } diff --git a/tdeabc/tdeab2tdeabc.desktop b/tdeabc/tdeab2tdeabc.desktop index ef7641b23..cfc12913e 100644 --- a/tdeabc/tdeab2tdeabc.desktop +++ b/tdeabc/tdeab2tdeabc.desktop @@ -1,15 +1,15 @@ [Desktop Entry] Name=tdeab2tdeabc -Name[af]=kab-na-kabc +Name[af]=kab-na-tdeabc Name[csb]=Kònwersëjô adresowi knéżczi -Name[eo]=Konvertilo de "kab" al "kabc" +Name[eo]=Konvertilo de "kab" al "tdeabc" Name[fr]=KAB2KABC Name[fy]=Kab2kabc Name[hu]=Kab2kabc Name[it]=Kab2Kabc Name[nl]=Kab2kabc Name[pl]=Konwersja książki adresowej -Name[pt_BR]=Conversão de kab para kabc +Name[pt_BR]=Conversão de kab para tdeabc Name[ro]=Kab2kabc Name[sv]=Kab2kabc Name[te]=కెఎబి2కెఎబిసి @@ -17,88 +17,88 @@ Name[zu]=i-tdeab2tdeabc Exec=tdeab2tdeabc --disable-autostart --quiet Icon=misc Type=Application -Comment=libkab to libkabc conversion tool. -Comment[af]=libkab na libkabc omskakeling program. -Comment[ar]=أداة تحويل libkab إلى libkabc. -Comment[az]=libkab - libkabc dönüşdürmə vasitəsi. -Comment[be]=Інструмент пераўтварэння libkab у libkabc. -Comment[bg]=Програма за конвертиране на libkab до libkabc. +Comment=libkab to libtdeabc conversion tool. +Comment[af]=libkab na libtdeabc omskakeling program. +Comment[ar]=أداة تحويل libkab إلى libtdeabc. +Comment[az]=libkab - libtdeabc dönüşdürmə vasitəsi. +Comment[be]=Інструмент пераўтварэння libkab у libtdeabc. +Comment[bg]=Програма за конвертиране на libkab до libtdeabc. Comment[bn]=libkab থেকে libtdeabc-তে পরিবর্তন করার প্রোগ্রাম। -Comment[bs]=alat za pretvaranje libkab u libkabc. -Comment[ca]=Eina de conversió de libkab a libkabc. -Comment[cs]=Převod dat z libkab do libkabc. -Comment[csb]=Nôrzãdze do kònwersëji z libkab do libkabc. -Comment[cy]=erfyn trosi libkab i libkabc +Comment[bs]=alat za pretvaranje libkab u libtdeabc. +Comment[ca]=Eina de conversió de libkab a libtdeabc. +Comment[cs]=Převod dat z libkab do libtdeabc. +Comment[csb]=Nôrzãdze do kònwersëji z libkab do libtdeabc. +Comment[cy]=erfyn trosi libkab i libtdeabc Comment[da]=libkab-til-libtdeabc-konverteringsværktøj. -Comment[de]=Konvertierung von libkab in libkabc -Comment[el]=Εργαλείο μετατροπής από το libkab στο libkabc. -Comment[eo]=Konvertilo de "libkab" al "libkabc" -Comment[es]=Conversor libkab a libkabc. -Comment[et]=libkab -> libkabc teisendamine +Comment[de]=Konvertierung von libkab in libtdeabc +Comment[el]=Εργαλείο μετατροπής από το libkab στο libtdeabc. +Comment[eo]=Konvertilo de "libkab" al "libtdeabc" +Comment[es]=Conversor libkab a libtdeabc. +Comment[et]=libkab -> libtdeabc teisendamine Comment[eu]=libkab-etik libtdeabc-era bihurtzeko tresna. Comment[fa]=ابزار تبدیل libkab به libcabc. -Comment[fi]=libkab-libkabc -muunnin -Comment[fr]=Outil de conversion de libkab vers libkabc. -Comment[fy]=Konversjeprogramma fan libkab nei libkabc. -Comment[ga]=Uirlis tiontaithe ó libkab go libkabc. -Comment[gl]=Ferramenta de conversión de libkab a libkabc. -Comment[he]=כלי המרה מ־libkab ל־libkabc -Comment[hi]=libkab से libkabc बदलने वाला औजार -Comment[hr]=Alat za pretvaranje iz libkab u libkabc -Comment[hsb]=libkab -> libkabc konwerter -Comment[hu]=libkab -> libkabc konvertáló. -Comment[id]=konverter libkab ke libkabc. -Comment[is]=libkab í libkabc breytingatól. -Comment[it]=Strumento di conversione da libkab a libkabc. -Comment[ja]=libkab から libkabc への変換ツール -Comment[ka]=libkab => libkabc გარდაქმნის ხელსაწყო. -Comment[kk]=libkab дегеннен libkabc дегенге айналдыру құралы. -Comment[km]=ឧបករណ៍បម្លែងពី libkab ទៅ libkabc -Comment[ko]=libkab을 libkabc로 바꿔주는 연장. -Comment[lb]=libkab op libkabc Konvertéierungs-Hëllefsmëttel. -Comment[lt]=libkab į libkabc konvertavimo įrankis. -Comment[lv]=libkab uz libkabc kovertēšanas rīks. -Comment[mk]=алатка за претворање од libkab во libkabc. +Comment[fi]=libkab-libtdeabc -muunnin +Comment[fr]=Outil de conversion de libkab vers libtdeabc. +Comment[fy]=Konversjeprogramma fan libkab nei libtdeabc. +Comment[ga]=Uirlis tiontaithe ó libkab go libtdeabc. +Comment[gl]=Ferramenta de conversión de libkab a libtdeabc. +Comment[he]=כלי המרה מ־libkab ל־libtdeabc +Comment[hi]=libkab से libtdeabc बदलने वाला औजार +Comment[hr]=Alat za pretvaranje iz libkab u libtdeabc +Comment[hsb]=libkab -> libtdeabc konwerter +Comment[hu]=libkab -> libtdeabc konvertáló. +Comment[id]=konverter libkab ke libtdeabc. +Comment[is]=libkab í libtdeabc breytingatól. +Comment[it]=Strumento di conversione da libkab a libtdeabc. +Comment[ja]=libkab から libtdeabc への変換ツール +Comment[ka]=libkab => libtdeabc გარდაქმნის ხელსაწყო. +Comment[kk]=libkab дегеннен libtdeabc дегенге айналдыру құралы. +Comment[km]=ឧបករណ៍បម្លែងពី libkab ទៅ libtdeabc +Comment[ko]=libkab을 libtdeabc로 바꿔주는 연장. +Comment[lb]=libkab op libtdeabc Konvertéierungs-Hëllefsmëttel. +Comment[lt]=libkab į libtdeabc konvertavimo įrankis. +Comment[lv]=libkab uz libtdeabc kovertēšanas rīks. +Comment[mk]=алатка за претворање од libkab во libtdeabc. Comment[mn]=libkab-аас libtdeabc-руу хөрвүүлэгч -Comment[ms]=perkakasan penukaran libkab to libkabc. -Comment[mt]=Għodda għall-konverżjoni libkab għal libkabc -Comment[nb]=libkab til libkabc konverteringsverktøy. -Comment[nds]=Warktüüch för't Ümwanneln vun libkab na libkabc. -Comment[ne]=libkab to libkabc रूपान्तरण उपकरण । -Comment[nl]=Conversieprogramma van libkab naar libkabc. -Comment[nn]=Konverterer libkab til libkabc -Comment[nso]=Sebereka sa phetosetso ya libkab go libkabc -Comment[pa]=libkab ਤੋ libkabc ਤਬਦੀਲੀ ਸੰਦ। -Comment[pl]=Narzędzie do konwersji z libkab do libkabc. -Comment[pt]=Ferramenta de conversão de libkab para libkabc. -Comment[pt_BR]=Ferramenta de conversão de libkab para libkabc. -Comment[ro]=Utilitar de conversie de la "libkab" la "libkabc". -Comment[ru]=утилита преобразования libkab в libkabc. -Comment[rw]=Igikoresho cy'ihindura libkab muri libkabc. -Comment[se]=konverterenreaidu libkab:as libkabc:ai -Comment[sk]=Prevod dát z libkab do libkabc. -Comment[sl]=Orodje za pretvorbo iz libkab v libkabc -Comment[sq]=Vegla për shëndrimin e libkab në libkabc. -Comment[sr]=Алат за конверзију из libkab-а у libkabc. -Comment[sr@Latn]=Alat za konverziju iz libkab-a u libkabc. -Comment[ss]=Lithulusi lekutjintja le-libkab kuya ku-libkabc. -Comment[sv]=Konverteringsverktyg från libkab till libkabc -Comment[ta]=libkab இலிருந்து libkabc க்கு மாற்றும் கருவி. -Comment[te]=libkab నుంచి libkabc కు మార్చు పనిముట్టు -Comment[tg]=асбоби дигаргунсози libkab ба libkabc -Comment[th]=เครื่องมือเปลี่ยน libkab เป็น libkabc -Comment[tr]=libkab' tan libkabc' ye dönüştürme aracı -Comment[tt]=libkab-›libkabc äyländerü qoralı. -Comment[uk]=Засіб перетворення libkab до libkabc. -Comment[uz]=libkab'ni libkabc'ga aylantiradigan vosita. -Comment[uz@cyrillic]=libkab'ни libkabc'га айлантирадиган восита. -Comment[ven]=Tshishumiswa tsha u shandukisa libkab itshi ya kha libkabc -Comment[vi]=Công cụ chuyển đổi libkab sang libkabc. -Comment[xh]=libkab kwi libkabc isixhobo sokuguqulela. -Comment[zh_CN]=libkab 到 libkabc 的转换工具。 -Comment[zh_HK]=libkab 至 libkabc 的轉換工具 -Comment[zh_TW]=libkab 至 libkabc 轉換工具 -Comment[zu]=Ithuluzi lokuguqula le-libkab kuyaku-libkabc +Comment[ms]=perkakasan penukaran libkab to libtdeabc. +Comment[mt]=Għodda għall-konverżjoni libkab għal libtdeabc +Comment[nb]=libkab til libtdeabc konverteringsverktøy. +Comment[nds]=Warktüüch för't Ümwanneln vun libkab na libtdeabc. +Comment[ne]=libkab to libtdeabc रूपान्तरण उपकरण । +Comment[nl]=Conversieprogramma van libkab naar libtdeabc. +Comment[nn]=Konverterer libkab til libtdeabc +Comment[nso]=Sebereka sa phetosetso ya libkab go libtdeabc +Comment[pa]=libkab ਤੋ libtdeabc ਤਬਦੀਲੀ ਸੰਦ। +Comment[pl]=Narzędzie do konwersji z libkab do libtdeabc. +Comment[pt]=Ferramenta de conversão de libkab para libtdeabc. +Comment[pt_BR]=Ferramenta de conversão de libkab para libtdeabc. +Comment[ro]=Utilitar de conversie de la "libkab" la "libtdeabc". +Comment[ru]=утилита преобразования libkab в libtdeabc. +Comment[rw]=Igikoresho cy'ihindura libkab muri libtdeabc. +Comment[se]=konverterenreaidu libkab:as libtdeabc:ai +Comment[sk]=Prevod dát z libkab do libtdeabc. +Comment[sl]=Orodje za pretvorbo iz libkab v libtdeabc +Comment[sq]=Vegla për shëndrimin e libkab në libtdeabc. +Comment[sr]=Алат за конверзију из libkab-а у libtdeabc. +Comment[sr@Latn]=Alat za konverziju iz libkab-a u libtdeabc. +Comment[ss]=Lithulusi lekutjintja le-libkab kuya ku-libtdeabc. +Comment[sv]=Konverteringsverktyg från libkab till libtdeabc +Comment[ta]=libkab இலிருந்து libtdeabc க்கு மாற்றும் கருவி. +Comment[te]=libkab నుంచి libtdeabc కు మార్చు పనిముట్టు +Comment[tg]=асбоби дигаргунсози libkab ба libtdeabc +Comment[th]=เครื่องมือเปลี่ยน libkab เป็น libtdeabc +Comment[tr]=libkab' tan libtdeabc' ye dönüştürme aracı +Comment[tt]=libkab-›libtdeabc äyländerü qoralı. +Comment[uk]=Засіб перетворення libkab до libtdeabc. +Comment[uz]=libkab'ni libtdeabc'ga aylantiradigan vosita. +Comment[uz@cyrillic]=libkab'ни libtdeabc'га айлантирадиган восита. +Comment[ven]=Tshishumiswa tsha u shandukisa libkab itshi ya kha libtdeabc +Comment[vi]=Công cụ chuyển đổi libkab sang libtdeabc. +Comment[xh]=libkab kwi libtdeabc isixhobo sokuguqulela. +Comment[zh_CN]=libkab 到 libtdeabc 的转换工具。 +Comment[zh_HK]=libkab 至 libtdeabc 的轉換工具 +Comment[zh_TW]=libkab 至 libtdeabc 轉換工具 +Comment[zu]=Ithuluzi lokuguqula le-libkab kuyaku-libtdeabc Terminal=false NoDisplay=true X-TDE-autostart-condition=tdeab2tdeabcrc:Startup:EnableAutostart:true diff --git a/tdeabc/tests/Makefile.am b/tdeabc/tests/Makefile.am index aca0597ad..c881f30bf 100644 --- a/tdeabc/tests/Makefile.am +++ b/tdeabc/tests/Makefile.am @@ -3,7 +3,7 @@ INCLUDES = -I$(top_builddir)/tdeabc -I$(top_srcdir)/tdeabc -I$(top_srcdir)/kab \ -I$(srcdir)/../vcardparser/ -I$(srcdir)/../vcard/include \ -I$(srcdir)/../vcard/include/generated \ -I$(srcdir)/../vcardparser $(all_includes) -LDADD = ../libkabc.la +LDADD = ../libtdeabc.la METASOURCES = AUTO @@ -12,44 +12,44 @@ check_PROGRAMS = testlock testldapclient testlock_LDFLAGS = $(all_libraries) testlock_SOURCES = testlock.cpp -testldapclient_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testldapclient_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testldapclient_SOURCES = testldapclient.cpp EXTRA_PROGRAMS = testkabc testkabcdlg testdistlist bigread bigwrite testdb \ - testaddressee testaddresseelist testaddressfmt kabcargl testaddresslineedit + testaddressee testaddresseelist testaddressfmt tdeabcargl testaddresslineedit -testtdeabc_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testtdeabc_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testtdeabc_SOURCES = testkabc.cpp -testaddressee_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testaddressee_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testaddressee_SOURCES = testaddressee.cpp -testaddresseelist_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testaddresseelist_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testaddresseelist_SOURCES = testaddresseelist.cpp -testaddressfmt_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testaddressfmt_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testaddressfmt_SOURCES = testaddressfmt.cpp -testkabcdlg_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testkabcdlg_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testkabcdlg_SOURCES = testkabcdlg.cpp -testdistlist_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testdistlist_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testdistlist_SOURCES = testdistlist.cpp -testaddresslineedit_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testaddresslineedit_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testaddresslineedit_SOURCES = testaddresslineedit.cpp -bigread_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor -bigread_LDADD = ../libkabc.la $(top_builddir)/tdeabc/plugins/file/libtdeabc_file.la +bigread_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor +bigread_LDADD = ../libtdeabc.la $(top_builddir)/tdeabc/plugins/file/libtdeabc_file.la bigread_SOURCES = bigread.cpp -bigwrite_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor -bigwrite_LDADD = ../libkabc.la $(top_builddir)/tdeabc/plugins/file/libtdeabc_file.la +bigwrite_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor +bigwrite_LDADD = ../libtdeabc.la $(top_builddir)/tdeabc/plugins/file/libtdeabc_file.la bigwrite_SOURCES = bigwrite.cpp -testdb_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testdb_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testdb_SOURCES = testdb.cpp -kabcargl_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor -kabcargl_SOURCES = kabcargl.cpp +tdeabcargl_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor +tdeabcargl_SOURCES = tdeabcargl.cpp diff --git a/tdeabc/tests/bigread.cpp b/tdeabc/tests/bigread.cpp index a2c9da070..3303f8645 100644 --- a/tdeabc/tests/bigread.cpp +++ b/tdeabc/tests/bigread.cpp @@ -24,7 +24,7 @@ int main(int argc,char **argv) AddressBook ab; - ResourceFile r( "my.kabc", "vcard2" ); + ResourceFile r( "my.tdeabc", "vcard2" ); ab.addResource( &r ); #if 0 diff --git a/tdeabc/tests/bigwrite.cpp b/tdeabc/tests/bigwrite.cpp index ab7fec7cf..61171a906 100644 --- a/tdeabc/tests/bigwrite.cpp +++ b/tdeabc/tests/bigwrite.cpp @@ -20,7 +20,7 @@ int main(int argc,char **argv) TDEApplication app( false, false ); AddressBook ab; - ResourceFile r( "my.kabc", "vcard" ); + ResourceFile r( "my.tdeabc", "vcard" ); ab.addResource( &r ); for( int i = 0; i < 5000; ++i ) { diff --git a/tdeabc/tests/kabcargl.cpp b/tdeabc/tests/kabcargl.cpp index d3a71890e..add322b75 100644 --- a/tdeabc/tests/kabcargl.cpp +++ b/tdeabc/tests/kabcargl.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or @@ -35,7 +35,7 @@ using namespace TDEABC; int main(int argc,char **argv) { - TDEAboutData aboutData("kabcargl","Fix broken pre3.0rc3 format","0.1"); + TDEAboutData aboutData("tdeabcargl","Fix broken pre3.0rc3 format","0.1"); aboutData.addAuthor("Cornelius Schumacher", 0, "schumacher@kde.org"); TDECmdLineArgs::init(argc,argv,&aboutData); diff --git a/tdeabc/tests/testlock.cpp b/tdeabc/tests/testlock.cpp index 7f3cf634b..f9d880753 100644 --- a/tdeabc/tests/testlock.cpp +++ b/tdeabc/tests/testlock.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> @@ -165,7 +165,7 @@ static const TDECmdLineOptions options[] = int main(int argc,char **argv) { - TDEAboutData aboutData("testlock",I18N_NOOP("Test libkabc Lock"),"0.1"); + TDEAboutData aboutData("testlock",I18N_NOOP("Test libtdeabc Lock"),"0.1"); TDECmdLineArgs::init(argc,argv,&aboutData); TDECmdLineArgs::addCmdLineOptions( options ); diff --git a/tdeabc/tests/testlock.h b/tdeabc/tests/testlock.h index 01d07fc47..62466b89a 100644 --- a/tdeabc/tests/testlock.h +++ b/tdeabc/tests/testlock.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> diff --git a/tdeabc/timezone.cpp b/tdeabc/timezone.cpp index 7b773db63..04955d0dc 100644 --- a/tdeabc/timezone.cpp +++ b/tdeabc/timezone.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/timezone.h b/tdeabc/timezone.h index b53df7728..ad6508f86 100644 --- a/tdeabc/timezone.h +++ b/tdeabc/timezone.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcard/Makefile.am b/tdeabc/vcard/Makefile.am index e8a33c3a9..35b31f5ed 100644 --- a/tdeabc/vcard/Makefile.am +++ b/tdeabc/vcard/Makefile.am @@ -12,10 +12,10 @@ libvcard_la_LIBADD = $(LIB_TDECORE) $(LIB_QT) check_PROGRAMS = testwrite testread -testwrite_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testwrite_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testwrite_LDADD = libvcard.la testwrite_SOURCES = testwrite.cpp -testread_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +testread_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor testread_LDADD = libvcard.la testread_SOURCES = testread.cpp diff --git a/tdeabc/vcard21parser.cpp b/tdeabc/vcard21parser.cpp index 46581b411..bae87fc75 100644 --- a/tdeabc/vcard21parser.cpp +++ b/tdeabc/vcard21parser.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Mark Westcott <mark@houseoffish.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcard21parser.h b/tdeabc/vcard21parser.h index a743e65f3..c6c75a3c8 100644 --- a/tdeabc/vcard21parser.h +++ b/tdeabc/vcard21parser.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Mark Westcott <mark@houseoffish.org> Copyright (c) 2000 George Staikos <staikos@kde.org> diff --git a/tdeabc/vcardconverter.cpp b/tdeabc/vcardconverter.cpp index 2dff56aa2..1026fecc0 100644 --- a/tdeabc/vcardconverter.cpp +++ b/tdeabc/vcardconverter.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardconverter.h b/tdeabc/vcardconverter.h index 982c704d4..c8944ff1c 100644 --- a/tdeabc/vcardconverter.h +++ b/tdeabc/vcardconverter.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2002 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardformat.cpp b/tdeabc/vcardformat.cpp index b8bfaa6b6..c9156699c 100644 --- a/tdeabc/vcardformat.cpp +++ b/tdeabc/vcardformat.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardformat.h b/tdeabc/vcardformat.h index b5d6ff133..d7a9c1884 100644 --- a/tdeabc/vcardformat.h +++ b/tdeabc/vcardformat.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardformatimpl.cpp b/tdeabc/vcardformatimpl.cpp index e88ab3078..3a0883edc 100644 --- a/tdeabc/vcardformatimpl.cpp +++ b/tdeabc/vcardformatimpl.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or @@ -162,7 +162,7 @@ bool VCardFormatImpl::loadAddressee( Addressee& addressee, VCARD::VCard &v ) break; case EntityLabel: - // not yet supported by kabc + // not yet supported by tdeabc break; case EntityMailer: diff --git a/tdeabc/vcardformatimpl.h b/tdeabc/vcardformatimpl.h index ddcd6fc07..a8ccf7749 100644 --- a/tdeabc/vcardformatimpl.h +++ b/tdeabc/vcardformatimpl.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardformatplugin.cpp b/tdeabc/vcardformatplugin.cpp index 83c4a8a7b..2adb7e139 100644 --- a/tdeabc/vcardformatplugin.cpp +++ b/tdeabc/vcardformatplugin.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardformatplugin.h b/tdeabc/vcardformatplugin.h index c9cc4f351..e68d2bd9e 100644 --- a/tdeabc/vcardformatplugin.h +++ b/tdeabc/vcardformatplugin.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardparser/Makefile.am b/tdeabc/vcardparser/Makefile.am index 20c6ed45d..556344efc 100644 --- a/tdeabc/vcardparser/Makefile.am +++ b/tdeabc/vcardparser/Makefile.am @@ -8,16 +8,16 @@ vcardsinclude_HEADERS = vcard.h vcardline.h vcardparser.h check_PROGRAMS = testread testwrite testread2 -testread_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor -testread_LDADD = libvcards.la $(top_builddir)/tdeabc/libkabc.la +testread_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor +testread_LDADD = libvcards.la $(top_builddir)/tdeabc/libtdeabc.la testread_SOURCES = testread.cpp -testread2_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor -testread2_LDADD = libvcards.la $(top_builddir)/tdeabc/libkabc.la +testread2_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor +testread2_LDADD = libvcards.la $(top_builddir)/tdeabc/libtdeabc.la testread2_SOURCES = testread2.cpp testutils.cpp -testwrite_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor -testwrite_LDADD = libvcards.la $(top_builddir)/tdeabc/libkabc.la +testwrite_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor +testwrite_LDADD = libvcards.la $(top_builddir)/tdeabc/libtdeabc.la testwrite_SOURCES = testwrite.cpp TESTFILES = vcard1.vcf vcard2.vcf vcard3.vcf vcard4.vcf vcard6.vcf vcard7.vcf diff --git a/tdeabc/vcardparser/testread.cpp b/tdeabc/vcardparser/testread.cpp index 284526abd..0b87e6621 100644 --- a/tdeabc/vcardparser/testread.cpp +++ b/tdeabc/vcardparser/testread.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/tdeabc/vcardparser/testwrite.cpp b/tdeabc/vcardparser/testwrite.cpp index c7df6df08..c567c85da 100644 --- a/tdeabc/vcardparser/testwrite.cpp +++ b/tdeabc/vcardparser/testwrite.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/tdeabc/vcardparser/vcard.cpp b/tdeabc/vcardparser/vcard.cpp index f6841cbd9..e978767a9 100644 --- a/tdeabc/vcardparser/vcard.cpp +++ b/tdeabc/vcardparser/vcard.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardparser/vcard.h b/tdeabc/vcardparser/vcard.h index ad50b8657..9152edca1 100644 --- a/tdeabc/vcardparser/vcard.h +++ b/tdeabc/vcardparser/vcard.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardparser/vcardline.cpp b/tdeabc/vcardparser/vcardline.cpp index 22d7f7e52..94051293d 100644 --- a/tdeabc/vcardparser/vcardline.cpp +++ b/tdeabc/vcardparser/vcardline.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardparser/vcardline.h b/tdeabc/vcardparser/vcardline.h index 78ce2a411..7fc3ff429 100644 --- a/tdeabc/vcardparser/vcardline.h +++ b/tdeabc/vcardparser/vcardline.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardparser/vcardparser.cpp b/tdeabc/vcardparser/vcardparser.cpp index 3cc38f5c8..7ac07ce22 100644 --- a/tdeabc/vcardparser/vcardparser.cpp +++ b/tdeabc/vcardparser/vcardparser.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardparser/vcardparser.h b/tdeabc/vcardparser/vcardparser.h index fc17d116b..56e869503 100644 --- a/tdeabc/vcardparser/vcardparser.h +++ b/tdeabc/vcardparser/vcardparser.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardtool.cpp b/tdeabc/vcardtool.cpp index 2dd9752ac..366f53a87 100644 --- a/tdeabc/vcardtool.cpp +++ b/tdeabc/vcardtool.cpp @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or diff --git a/tdeabc/vcardtool.h b/tdeabc/vcardtool.h index 0d67605d6..50e8d4970 100644 --- a/tdeabc/vcardtool.h +++ b/tdeabc/vcardtool.h @@ -1,5 +1,5 @@ /* - This file is part of libkabc. + This file is part of libtdeabc. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This library is free software; you can redistribute it and/or |