~ubuntu-branches/ubuntu/oneiric/kdepim/oneiric-updates

« back to all changes in this revision

Viewing changes to wizards/overviewpage.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-06-28 19:33:24 UTC
  • mfrom: (0.2.13) (0.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20110628193324-8yvjs8sdv9rdoo6c
Tags: 4:4.7.0-0ubuntu1
* New upstream release
  - update install files
  - add missing kdepim-doc package to control file
  - Fix Vcs lines
  - kontact breaks/replaces korganizer << 4:4.6.80
  - tighten the dependency of kdepim-dev on libkdepim4 to fix lintian error

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
*/
21
21
 
22
22
#include "overviewpage.h"
23
 
#include "kolabwizard.h"
24
 
#include "sloxwizard.h"
25
23
#include "groupwisewizard.h"
26
24
 
27
25
#include <kacceleratormanager.h>
61
59
 
62
60
  // FIXME: Maybe hyperlinks would be better than buttons.
63
61
 
64
 
  QPushButton* button = new QPushButton( i18n("Kolab"), this );
 
62
/*  QPushButton* button = new QPushButton( i18n("Kolab"), this );
65
63
  layout->addWidget( button, 4, 0, 1, 4 );
66
 
  connect( button, SIGNAL( clicked() ), SLOT( showWizardKolab() ) );
67
 
 
68
 
  button = new QPushButton( i18n("SUSE Linux Openexchange (SLOX)"), this );
69
 
  layout->addWidget( button, 5, 0, 1, 4 );
70
 
  connect( button, SIGNAL( clicked() ), SLOT( showWizardSlox() ) );
71
 
 
72
 
  button = new QPushButton( i18n("Novell GroupWise"), this );
 
64
  connect( button, SIGNAL( clicked() ), SLOT( showWizardKolab() ) );*/
 
65
 
 
66
  QPushButton *button = new QPushButton( i18n("Novell GroupWise"), this );
73
67
  layout->addWidget( button, 6, 0, 1, 4 );
74
68
  connect( button, SIGNAL( clicked() ), SLOT( showWizardGroupwise() ) );
75
69
 
94
88
 
95
89
void OverViewPage::showWizardKolab()
96
90
{
97
 
  KolabWizard wizard;
98
 
  wizard.exec();
99
 
}
100
 
 
101
 
void OverViewPage::showWizardSlox()
102
 
{
103
 
  SloxWizard wizard;
104
 
  wizard.exec();
 
91
/*  KolabWizard wizard;
 
92
  wizard.exec();*/
105
93
}
106
94
 
107
95
void OverViewPage::showWizardGroupwise()