Nur in ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/kcal: localkonnector.cpp.
diff -ur kitchensync/libkonnector2/plugins/local/localkonnector.cpp ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/local/localkonnector.cpp
--- kitchensync/libkonnector2/plugins/local/localkonnector.cpp	2004-08-14 01:46:37.000000000 +0200
+++ ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/local/localkonnector.cpp	2004-08-29 00:03:31.000000000 +0200
@@ -28,6 +28,8 @@
 #include <bookmarksyncee.h>
 #include <synchistory.h>
 
+#include <libkdepim/kpimprefs.h>
+
 #include <kabc/resourcefile.h>
 
 #include <konnectorinfo.h>
@@ -48,7 +50,8 @@
 
 
 LocalKonnector::LocalKonnector( const KConfig *config )
-    : Konnector( config ), mConfigWidget( 0 )
+    : Konnector( config ), mConfigWidget( 0 ), 
+    mCalendar( KPimPrefs::timezone() )
 {
   if ( config ) {
     mCalendarFile = config->readPathEntry( "CalendarFile" );
diff -ur kitchensync/libkonnector2/plugins/qtopia/datebook.cpp ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/qtopia/datebook.cpp
--- kitchensync/libkonnector2/plugins/qtopia/datebook.cpp	2004-08-29 01:13:09.000000000 +0200
+++ ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/qtopia/datebook.cpp	2004-08-28 20:37:06.000000000 +0200
@@ -200,9 +200,6 @@
 
 bool DateBook::toKDE( const QString& fileName, ExtraMap& extraMap, KSync::CalendarSyncee *syncee )
 {
-    syncee->setTitle( i18n("Opie") );
-    syncee->setIdentifier( "Opie" );
-
     QFile file( fileName );
     if ( !file.open( IO_ReadOnly ) ) {
         return false;
diff -ur kitchensync/libkonnector2/plugins/qtopia/socket.cpp ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/qtopia/socket.cpp
--- kitchensync/libkonnector2/plugins/qtopia/socket.cpp	2004-08-29 01:13:09.000000000 +0200
+++ ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/qtopia/socket.cpp	2004-08-29 00:31:49.000000000 +0200
@@ -27,6 +27,7 @@
 #include <klocale.h>
 #include <kio/netaccess.h>
 #include <libkcal/calendarlocal.h>
+#include <libkdepim/kpimprefs.h>
 
 #include <addressbooksyncee.h>
 #include <calendarsyncee.h>
@@ -523,10 +524,14 @@
 {
   CalendarSyncee* syncee = d->m_sync.calendarSyncee();
   if ( syncee == 0 ) {
-    syncee = new KSync::CalendarSyncee( new KCal::CalendarLocal() );
+    syncee = new KSync::CalendarSyncee( new KCal::CalendarLocal(KPimPrefs::timezone()) );
 
     /* if we've a device lets set the merger */
     syncee->setMerger( d->device ? d->device->merger( OpieHelper::Device::Calendar ) : 0);
+
+    /*  Set title */
+    syncee->setTitle( i18n("Opie") );
+    syncee->setIdentifier( "Opie Todolist and Datebook" );
   }
 
   return syncee;
@@ -850,9 +855,10 @@
  */
 void QtopiaSocket::readTimeZones()
 {
-    KConfig conf("korganizerrc");
-    conf.setGroup("Time & Date");
-    d->tz = conf.readEntry("TimeZoneId", QString::fromLatin1("UTC") );
+    QString pref = KPimPrefs::timezone();
+    d->tz = pref.isEmpty() ?
+            QString::fromLatin1("Europe/London") : pref;
+    kdDebug() << "TimeZone is " << d->tz << endl;
 }
 
 bool QtopiaSocket::downloadFile( const QString& str, QString& dest )
diff -ur kitchensync/libkonnector2/plugins/qtopia/todo.cpp ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/qtopia/todo.cpp
--- kitchensync/libkonnector2/plugins/qtopia/todo.cpp	2004-08-29 01:13:09.000000000 +0200
+++ ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/qtopia/todo.cpp	2004-08-28 20:36:47.000000000 +0200
@@ -154,10 +154,6 @@
 
 bool ToDo::toKDE( const QString &fileName, ExtraMap& map, KSync::CalendarSyncee *syncee )
 {
-  syncee->setTitle( i18n("OpieTodo") );
-  syncee->setIdentifier( "Opie" );
-
-
   QFile file( fileName );
   if ( !file.open( IO_ReadOnly ) ) {
     return false;
Nur in kitchensync/libkonnector2/plugins/remote: .cvsignore.
Nur in kitchensync/libkonnector2/plugins/remote: Makefile.am.
Nur in kitchensync/libkonnector2/plugins/remote: Makefile.in.
diff -ur kitchensync/libkonnector2/plugins/remote/remotekonnector.cpp ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/remote/remotekonnector.cpp
--- kitchensync/libkonnector2/plugins/remote/remotekonnector.cpp	2004-08-29 01:13:09.000000000 +0200
+++ ../kitchensync-0.0.8-kornholio/kitchensync/libkonnector2/plugins/remote/remotekonnector.cpp	2004-08-29 00:15:40.000000000 +0200
@@ -31,6 +31,7 @@
 #include <kabc/vcardconverter.h>
 #include <libkcal/icalformat.h>
 #include <libkdepim/kabcresourcenull.h>
+#include <libkdepim/kpimprefs.h>
 
 #include <konnectorinfo.h>
 #include <kapabilities.h>
@@ -52,7 +53,8 @@
 
 
 RemoteKonnector::RemoteKonnector( const KConfig *config )
-    : Konnector( config ), mConfigWidget( 0 )
+    : Konnector( config ), mConfigWidget( 0 ),
+    mCalendar( KPimPrefs::timezone() )
 {
   mAddressBook.addResource( new KABC::ResourceNull() );
   if ( config ) {
