summaryrefslogtreecommitdiffstats
path: root/kmail/customtemplates.h
diff options
context:
space:
mode:
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;
};