author | kergoth <kergoth> | 2002-11-11 16:41:09 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-11 16:41:09 (UTC) |
commit | 84cafc64d515c80aebd50e70b47e3da93d742c8a (patch) (side-by-side diff) | |
tree | afab5ebb7e27ba6d3bd6f40bc98f27ce806840b6 /libopie2/opiepim | |
parent | 2df7c2d998c4b15dba8cefea096cce248b774703 (diff) | |
download | opie-84cafc64d515c80aebd50e70b47e3da93d742c8a.zip opie-84cafc64d515c80aebd50e70b47e3da93d742c8a.tar.gz opie-84cafc64d515c80aebd50e70b47e3da93d742c8a.tar.bz2 |
no default arguments in implementation
-rw-r--r-- | libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp b/libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp index 013f3af..faa72b4 100644 --- a/libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp +++ b/libopie2/opiepim/backend/ocontactaccessbackend_vcard.cpp @@ -8,40 +8,43 @@ * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * ===================================================================== * ToDo: * * ===================================================================== * Version: $Id$ * ===================================================================== * History: * $Log$ + * Revision 1.3 2002/11/11 16:41:09 kergoth + * no default arguments in implementation + * * Revision 1.2 2002/11/10 15:41:53 eilers * Bugfixes.. * * Revision 1.1 2002/11/09 14:34:52 eilers * Added VCard Backend. * */ #include "ocontactaccessbackend_vcard.h" #include "../../library/backend/vobject_p.h" #include "../../library/backend/qfiledirect_p.h" #include <qpe/timeconversion.h> #include <qfile.h> -OContactAccessBackend_VCard::OContactAccessBackend_VCard ( QString , QString filename = 0l ): +OContactAccessBackend_VCard::OContactAccessBackend_VCard ( QString , QString filename ): m_dirty( false ), m_file( filename ) { load(); } bool OContactAccessBackend_VCard::load () { m_map.clear(); m_dirty = false; |