summaryrefslogtreecommitdiffabout
path: root/korganizer/outgoingdialog_base.cpp
authorzautrix <zautrix>2004-06-29 12:52:18 (UTC)
committer zautrix <zautrix>2004-06-29 12:52:18 (UTC)
commit275e70532bb26ed78ce2d3bebf980dd745368ec2 (patch) (side-by-side diff)
treec9252a9ec50856c86cc1165007f841c50d5cdc51 /korganizer/outgoingdialog_base.cpp
parent7b2b9f2b05809b9577837551ad864d88b9b355ef (diff)
downloadkdepimpi-275e70532bb26ed78ce2d3bebf980dd745368ec2.zip
kdepimpi-275e70532bb26ed78ce2d3bebf980dd745368ec2.tar.gz
kdepimpi-275e70532bb26ed78ce2d3bebf980dd745368ec2.tar.bz2
Removed the include moc on KO dir
Diffstat (limited to 'korganizer/outgoingdialog_base.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/outgoingdialog_base.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/korganizer/outgoingdialog_base.cpp b/korganizer/outgoingdialog_base.cpp
index e5b913a..1873b44 100644
--- a/korganizer/outgoingdialog_base.cpp
+++ b/korganizer/outgoingdialog_base.cpp
@@ -76,34 +76,32 @@ OutgoingDialog_base::OutgoingDialog_base( QWidget* parent, const char* name, boo
OutgoingDialog_base::~OutgoingDialog_base()
{
// no need to delete child widgets, Qt does it all for us
}
/*
* Sets the strings of the subwidgets using the current
* language.
*/
void OutgoingDialog_base::languageChange()
{
setCaption( tr2i18n( "Scheduler - Outgoing Messages" ) );
mMessageListView->header()->setLabel( 0, tr2i18n( "Summary" ) );
mMessageListView->header()->setLabel( 1, tr2i18n( "Start Date" ) );
mMessageListView->header()->setLabel( 2, tr2i18n( "Start Time" ) );
mMessageListView->header()->setLabel( 3, tr2i18n( "End Date" ) );
mMessageListView->header()->setLabel( 4, tr2i18n( "End Time" ) );
mMessageListView->header()->setLabel( 5, tr2i18n( "Method" ) );
PushButton5->setText( tr2i18n( "&Send Messages" ) );
PushButton7->setText( tr2i18n( "&Remove" ) );
PushButton6->setText( tr2i18n( "&Close" ) );
}
void OutgoingDialog_base::send()
{
qWarning( "OutgoingDialog_base::send(): Not implemented yet" );
}
void OutgoingDialog_base::deleteItem()
{
qWarning( "OutgoingDialog_base::deleteItem(): Not implemented yet" );
}
-
-#include "outgoingdialog_base.moc"