author | zautrix <zautrix> | 2005-06-17 06:29:41 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-17 06:29:41 (UTC) |
commit | a04fff3ce192e0bebf9243a1fbedb97cf7108d2b (patch) (side-by-side diff) | |
tree | 1bc39bdadd6bcbb950ee4bcfe99d91f668883055 | |
parent | b297e71bd6276ee9370917cb6765d73db7b61de9 (diff) | |
download | kdepimpi-a04fff3ce192e0bebf9243a1fbedb97cf7108d2b.zip kdepimpi-a04fff3ce192e0bebf9243a1fbedb97cf7108d2b.tar.gz kdepimpi-a04fff3ce192e0bebf9243a1fbedb97cf7108d2b.tar.bz2 |
fixx
-rw-r--r-- | libkdepim/ksyncprefsdialog.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libkdepim/ksyncprefsdialog.cpp b/libkdepim/ksyncprefsdialog.cpp index 3db58ec..8873ed1 100644 --- a/libkdepim/ksyncprefsdialog.cpp +++ b/libkdepim/ksyncprefsdialog.cpp @@ -167,32 +167,43 @@ void KSyncPrefsDialog::setupSyncAlgTab() //++iii; gr = new QButtonGroup ( 1, Qt::Horizontal, i18n("Sync preferences"), topFrame); //topLayout->addMultiCellWidget(gr, iii,iii,0,1); //++iii; loc = new QRadioButton ( i18n("Take local entry on conflict"), gr ); rem = new QRadioButton ( i18n("Take remote entry on conflict"), gr ); newest = new QRadioButton ( i18n("Take newest entry on conflict"), gr ); ask = new QRadioButton ( i18n("Ask for every entry on conflict"), gr ); f_loc= new QRadioButton ( i18n("Force: Take local entry always"), gr ); f_rem = new QRadioButton ( i18n("Force: Take remote entry always"), gr ); // both = new QRadioButton ( i18n("Take both on conflict"), gr ); mShowSummaryAfterSync = new QCheckBox( i18n("Show summary after sync"), topFrame ); //topLayout->addMultiCellWidget(mShowSummaryAfterSync, iii,iii,0,1); //++iii; +#if 0 + QHGroupBox* gb51 = new QHGroupBox( i18n("Local resources to sync with:"), topFrame); + { + QVBox * fibo2 = new QVBox ( gb51 ); + new QLabel ( i18n("Calendar resources:"), fibo2 ); + //mFilterInCal = new QComboBox( fibo2 ); + fibo2 = new QVBox ( gb51 ); + new QLabel ( i18n("Addressbook resources:"), fibo2 ); + //mFilterInAB = new QComboBox( fibo2 ); + } +#endif QHGroupBox* gb5 = new QHGroupBox( i18n("Apply filter when adding data to local:"), topFrame); QVBox * fibo2 = new QVBox ( gb5 ); new QLabel ( i18n("Incoming calendar filter:"), fibo2 ); mFilterInCal = new QComboBox( fibo2 ); fibo2 = new QVBox ( gb5 ); new QLabel ( i18n("Incoming addressbook filter:"), fibo2 ); mFilterInAB = new QComboBox( fibo2 ); mWriteBackFile = new QCheckBox( i18n("Write back synced data"), topFrame ); // topLayout->addMultiCellWidget(mWriteBackFile, iii,iii,0,1); // ++iii; QVGroupBox* gb2 = new QVGroupBox( i18n("Write back options"), topFrame); //topLayout->addMultiCellWidget(gb2, iii,iii,0,1); //++iii; { |