summaryrefslogtreecommitdiffabout
authorulf69 <ulf69>2004-09-30 00:01:01 (UTC)
committer ulf69 <ulf69>2004-09-30 00:01:01 (UTC)
commit18133bd2cce41a83dab0f2feee01b7b3edd189dd (patch) (side-by-side diff)
tree1943eeaf48f53c4e08769e036c235047ad5e897b
parenta138b5fb62f993cbe4cd6ab004429316d0f9c95a (diff)
downloadkdepimpi-18133bd2cce41a83dab0f2feee01b7b3edd189dd.zip
kdepimpi-18133bd2cce41a83dab0f2feee01b7b3edd189dd.tar.gz
kdepimpi-18133bd2cce41a83dab0f2feee01b7b3edd189dd.tar.bz2
bugfix. removed typo
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/tmpaddressbook.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kabc/tmpaddressbook.cpp b/kabc/tmpaddressbook.cpp
index ca47ca4..6e24302 100644
--- a/kabc/tmpaddressbook.cpp
+++ b/kabc/tmpaddressbook.cpp
@@ -9,48 +9,48 @@
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
/*
Enhanced Version of the file for platform independent KDE tools.
Copyright (c) 2004 Ulf Schenk
$Id$
*/
#include <qptrlist.h>
#include "tmpaddressbook.h"
using namespace KABC;
#include "resource.h"
TmpAddressBook::TmpAddressBook()
: AddressBook(0, "tmpcontact")
{
}
TmpAddressBook::TmpAddressBook( const QString &config )
- : AddressBook( config, "tmpcontract" )
+ : AddressBook( config, "tmpcontact" )
{
}
TmpAddressBook::~TmpAddressBook()
{
//remove all possible resources. This should cleanup the configfile.
QPtrList<KABC::Resource> mResources = resources();
QPtrListIterator<KABC::Resource> it(mResources);
for ( ; it.current(); ++it ) {
KABC::Resource *res = it.current();
removeResource(res);
}
}