diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:12 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:14:12 -0600 |
commit | fd5d099065a748cac49e20a13481f85666c53c71 (patch) | |
tree | a0f1672cd88eb0e69b9ddc2ed9b08ecd98538bd3 /knode/kncomposer.h | |
parent | b440a9c608596cd88efdb3bfa4661c5e37efbe4b (diff) | |
download | tdepim-fd5d099065a748cac49e20a13481f85666c53c71.tar.gz tdepim-fd5d099065a748cac49e20a13481f85666c53c71.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'knode/kncomposer.h')
-rw-r--r-- | knode/kncomposer.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/knode/kncomposer.h b/knode/kncomposer.h index e41a40f11..2f136f11c 100644 --- a/knode/kncomposer.h +++ b/knode/kncomposer.h @@ -34,14 +34,14 @@ class TQGroupBox; class TDEProcess; class KSpell; class KDictSpellingHighlighter; -class KSelectAction; -class KToggleAction; +class TDESelectAction; +class TDEToggleAction; class KNLocalArticle; class KNAttachment; class SpellingFilter; -class KNComposer : public KMainWindow , virtual public KNodeComposerIface { +class KNComposer : public TDEMainWindow , virtual public KNodeComposerIface { Q_OBJECT @@ -110,20 +110,20 @@ class KNComposer : public KMainWindow , virtual public KNodeComposerIface { //Attachments TQValueList<KNAttachment*> mDeletedAttachments; - TQPtrList<KAction> m_listAction; + TQPtrList<TDEAction> m_listAction; bool a_ttChanged; //------------------------------ <Actions> ----------------------------- - KAccel *a_ccel; - KAction *a_ctExternalEditor, + TDEAccel *a_ccel; + TDEAction *a_ctExternalEditor, *a_ctSpellCheck, *a_ctRemoveAttachment, *a_ctAttachmentProperties, *a_ctSetCharsetKeyb; - KToggleAction *a_ctPGPsign, + TDEToggleAction *a_ctPGPsign, *a_ctDoPost, *a_ctDoMail, *a_ctWordWrap; - KSelectAction *a_ctSetCharset; + TDESelectAction *a_ctSetCharset; bool spellLineEdit; protected slots: void slotSendNow(); @@ -164,7 +164,7 @@ class KNComposer : public KMainWindow , virtual public KNodeComposerIface { void slotCancelEditor(); // attachment list - void slotAttachmentPopup(KListView*, TQListViewItem *it, const TQPoint &p); + void slotAttachmentPopup(TDEListView*, TQListViewItem *it, const TQPoint &p); void slotAttachmentSelected(TQListViewItem *it); void slotAttachmentEdit(TQListViewItem *it); void slotAttachmentRemove(TQListViewItem *it); @@ -302,7 +302,7 @@ private: }; -class KNComposer::AttachmentView : public KListView { +class KNComposer::AttachmentView : public TDEListView { Q_OBJECT @@ -319,10 +319,10 @@ class KNComposer::AttachmentView : public KListView { }; -class KNComposer::AttachmentViewItem : public KListViewItem { +class KNComposer::AttachmentViewItem : public TDEListViewItem { public: - AttachmentViewItem(KListView *v, KNAttachment *a); + AttachmentViewItem(TDEListView *v, KNAttachment *a); ~AttachmentViewItem(); KNAttachment *attachment; |