summaryrefslogtreecommitdiffstats
path: root/kmail/customtemplates.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:14:12 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:14:12 -0600
commitfd5d099065a748cac49e20a13481f85666c53c71 (patch)
treea0f1672cd88eb0e69b9ddc2ed9b08ecd98538bd3 /kmail/customtemplates.h
parentb440a9c608596cd88efdb3bfa4661c5e37efbe4b (diff)
downloadtdepim-fd5d099065a748cac49e20a13481f85666c53c71.tar.gz
tdepim-fd5d099065a748cac49e20a13481f85666c53c71.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kmail/customtemplates.h')
-rw-r--r--kmail/customtemplates.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmail/customtemplates.h b/kmail/customtemplates.h
index 09c8c8fb..9b8da994 100644
--- a/kmail/customtemplates.h
+++ b/kmail/customtemplates.h
@@ -30,7 +30,7 @@
struct CustomTemplateItem;
typedef TQDict<CustomTemplateItem> CustomTemplateItemList;
-class KShortcut;
+class TDEShortcut;
class CustomTemplates : public CustomTemplatesBase
{
@@ -61,7 +61,7 @@ class CustomTemplates : public CustomTemplatesBase
void slotRemoveClicked();
void slotListSelectionChanged();
void slotTypeActivated( int index );
- void slotShortcutCaptured( const KShortcut &shortcut );
+ void slotShortcutCaptured( const TDEShortcut &shortcut );
void slotNameChanged( const TQString& );
signals:
@@ -92,14 +92,14 @@ struct CustomTemplateItem
CustomTemplateItem() {}
CustomTemplateItem( const TQString &name,
const TQString &content,
- KShortcut &shortcut,
+ TDEShortcut &shortcut,
CustomTemplates::Type type,
TQString to, TQString cc ) :
mName( name ), mContent( content ), mShortcut(shortcut), mType( type ),
mTo( to ), mCC( cc ) {}
TQString mName, mContent;
- KShortcut mShortcut;
+ TDEShortcut mShortcut;
CustomTemplates::Type mType;
TQString mTo, mCC;
};