~ubuntu-branches/ubuntu/raring/kdepimlibs/raring-proposed

« back to all changes in this revision

Viewing changes to akonadi/subscriptiondialog_p.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-07-08 00:32:40 UTC
  • mto: (0.5.5 experimental) (1.1.93)
  • mto: This revision was merged to the branch mainline in revision 100.
  • Revision ID: package-import@ubuntu.com-20110708003240-no12z37io7q5nxwt
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
     * Creates a new subscription dialog.
47
47
     *
48
48
     * @param parent The parent widget.
49
 
     * @param mimetype The specific mimetype
 
49
     * @param mimetypes The specific mimetypes
50
50
     * @since 4.6
51
51
     */
52
 
    explicit SubscriptionDialog( const QString & mimetype, QWidget *parent = 0 );
 
52
    explicit SubscriptionDialog( const QStringList &mimetypes, QWidget *parent = 0 );
53
53
 
54
54
    /**
55
55
     * Destroys the subscription dialog.
64
64
    class Private;
65
65
    Private* const d;
66
66
 
67
 
    void init( const QString& mimetype = QString());
 
67
    void init( const QStringList &mimetypes );
68
68
 
69
69
    Q_PRIVATE_SLOT( d, void done() )
70
70
    Q_PRIVATE_SLOT( d, void subscriptionResult( KJob* job ) )