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

« back to all changes in this revision

Viewing changes to kmail/foldershortcutdialog.h

  • 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:
40
40
#define FOLDERSHORTCUTDIALOG_H
41
41
 
42
42
#include <kdialog.h> // include for the base class
43
 
class KMFolder;
 
43
#include <QSharedPointer>
 
44
 
44
45
class KKeySequenceWidget;
45
46
class KMMainWidget;
46
47
 
 
48
namespace MailCommon {
 
49
  class FolderCollection;
 
50
}
 
51
 
47
52
namespace KMail
48
53
{
49
54
 
51
56
{
52
57
Q_OBJECT
53
58
public:
54
 
  FolderShortcutDialog( KMFolder *folder, KMMainWidget *mw,
 
59
  FolderShortcutDialog( const QSharedPointer<MailCommon::FolderCollection>& folder, KMMainWidget *mw,
55
60
                        QWidget *parent=0 );
56
61
  ~FolderShortcutDialog();
57
62
 
60
65
  void slotOk();
61
66
 
62
67
private:
63
 
  KMFolder *mFolder;
 
68
  QSharedPointer<MailCommon::FolderCollection> mFolder;
64
69
  KMMainWidget *mMainWidget;
65
70
  KKeySequenceWidget *mKeySeqWidget;
66
71