summaryrefslogtreecommitdiffstats
path: root/libtdepim/komposer/core/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libtdepim/komposer/core/core.cpp')
-rw-r--r--libtdepim/komposer/core/core.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/libtdepim/komposer/core/core.cpp b/libtdepim/komposer/core/core.cpp
index a2f5fd00..87da5c00 100644
--- a/libtdepim/komposer/core/core.cpp
+++ b/libtdepim/komposer/core/core.cpp
@@ -55,7 +55,7 @@ using namespace Komposer;
Core::Core( TQWidget *parent, const char *name )
: KomposerIface( "KomposerIface" ),
- KMainWindow( parent, name ), m_currentEditor( 0 )
+ TDEMainWindow( parent, name ), m_currentEditor( 0 )
{
initWidgets();
initCore();
@@ -248,29 +248,29 @@ Core::createActions()
{
KStdAction::close( this, TQT_SLOT(slotClose()), actionCollection() );
- (void) new KAction( i18n( "&Send" ), "mail_send", CTRL+Key_Return,
+ (void) new TDEAction( i18n( "&Send" ), "mail_send", CTRL+Key_Return,
this, TQT_SLOT(slotSendNow()), actionCollection(),
"send_default" );
- (void) new KAction( i18n( "&Queue" ), "queue", 0,
+ (void) new TDEAction( i18n( "&Queue" ), "queue", 0,
this, TQT_SLOT(slotSendLater()),
actionCollection(), "send_alternative" );
- (void) new KAction( i18n( "Save in &Drafts Folder" ), "filesave", 0,
+ (void) new TDEAction( i18n( "Save in &Drafts Folder" ), "filesave", 0,
this, TQT_SLOT(slotSaveDraft()),
actionCollection(), "save_in_drafts" );
- (void) new KAction( i18n( "&Insert File..." ), "fileopen", 0,
+ (void) new TDEAction( i18n( "&Insert File..." ), "fileopen", 0,
this, TQT_SLOT(slotInsertFile()),
actionCollection(), "insert_file" );
- (void) new KAction( i18n( "&Address Book" ), "contents",0,
+ (void) new TDEAction( i18n( "&Address Book" ), "contents",0,
this, TQT_SLOT(slotAddrBook()),
actionCollection(), "addressbook" );
- (void) new KAction( i18n( "&New Composer" ), "mail_new",
- KStdAccel::shortcut( KStdAccel::New ),
+ (void) new TDEAction( i18n( "&New Composer" ), "mail_new",
+ TDEStdAccel::shortcut( TDEStdAccel::New ),
this, TQT_SLOT(slotNewComposer()),
actionCollection(), "new_composer" );
- (void) new KAction( i18n( "&Attach File..." ), "attach",
+ (void) new TDEAction( i18n( "&Attach File..." ), "attach",
0, this, TQT_SLOT(slotAttachFile()),
actionCollection(), "attach_file" );
}