~ubuntu-branches/ubuntu/quantal/kdepim/quantal

« back to all changes in this revision

Viewing changes to messageviewer/mailwebview.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: package-import@ubuntu.com-20111215141751-bmhdpiwl23wd9w26
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define MESSAGEVIEWER_MAILWEBVIEW_H
22
22
 
23
23
#include <qglobal.h> // make sure we have Q_OS_WINCE defined
 
24
#include "globalsettings.h"
24
25
 
25
26
#ifdef KDEPIM_NO_WEBKIT
26
27
# include <QTextBrowser>
38
39
 
39
40
/// MailWebView extends KWebView so that it can emit the popupMenu() signal
40
41
#ifdef KDEPIM_NO_WEBKIT
41
 
class MailWebView : public QTextBrowser // krazy:exclude=qclasses
 
42
class MESSAGEVIEWER_EXPORT MailWebView : public QTextBrowser // krazy:exclude=qclasses
42
43
#else
43
44
# ifdef Q_OS_WINCE
44
 
class MailWebView : public QWebView
 
45
class MESSAGEVIEWER_EXPORT MailWebView : public QWebView
45
46
# else
46
 
class MailWebView : public KWebView
 
47
class MESSAGEVIEWER_EXPORT MailWebView : public KWebView
47
48
# endif
48
49
#endif
49
50
{