Diffstat (limited to 'kabc/converter/qtopia/qtopiaconverter.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kabc/converter/qtopia/qtopiaconverter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kabc/converter/qtopia/qtopiaconverter.h b/kabc/converter/qtopia/qtopiaconverter.h index 7397113..8f4c698 100644 --- a/kabc/converter/qtopia/qtopiaconverter.h +++ b/kabc/converter/qtopia/qtopiaconverter.h @@ -29,50 +29,50 @@ $Id$ #include <qstring.h> #include "addressee.h" #include <qpe/pim/contact.h> class Categories; namespace KABC { class QtopiaConverter { public: /** * Constructor. */ QtopiaConverter(); /** * Destructor. */ virtual ~QtopiaConverter(); - virtual bool init(); - virtual void deinit(); + bool init(); + void deinit(); /** * Converts a vcard string to an addressee. * * @param contact The qtopia contact. * @param addr The addressee. */ bool qtopiaToAddressee( const PimContact &contact, Addressee &addr ); /** * Converts an addressee to a vcard string. * * @param addr The addressee. * @param contact The qtopia contact. */ bool addresseeToQtopia( const Addressee &addr, PimContact &contact ); private: Categories* catDB; }; } |