summaryrefslogtreecommitdiffstats
path: root/korn/subjectsdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korn/subjectsdlg.cpp')
-rw-r--r--korn/subjectsdlg.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/korn/subjectsdlg.cpp b/korn/subjectsdlg.cpp
index b001f776..f770d075 100644
--- a/korn/subjectsdlg.cpp
+++ b/korn/subjectsdlg.cpp
@@ -13,9 +13,9 @@
#include "maildlg.h"
#include "progress_dialog.h"
-KornSubjectsDlg::SubjectListViewItem::SubjectListViewItem( TQListView *parent, KornMailSubject * item)
+KornSubjectsDlg::SubjectListViewItem::SubjectListViewItem( TQListView *tqparent, KornMailSubject * item)
// set the column strings except column 2 (date)
- : KListViewItem(parent, item->getSender(), item->getSubject(), "", KGlobal::locale()->formatNumber(item->getSize(), 0))
+ : KListViewItem(tqparent, item->getSender(), item->getSubject(), "", KGlobal::locale()->formatNumber(item->getSize(), 0))
, _mailSubject( new KornMailSubject( *item ) )
{
// convert the date according to the user settings and show it in column 2
@@ -53,14 +53,14 @@ int KornSubjectsDlg::SubjectListViewItem::compare( TQListViewItem* item, int col
}
}
-KornSubjectsDlg::KornSubjectsDlg( TQWidget *parent )
- : KDialogBase( parent, "urldialog", true, "test", Close, Close, true), _mailDrop( new TQPtrList< KMailDrop > ),
+KornSubjectsDlg::KornSubjectsDlg( TQWidget *tqparent )
+ : KDialogBase( tqparent, "urldialog", true, "test", Close, Close, true), _mailDrop( new TQPtrList< KMailDrop > ),
_subjects(0), _delete(0), mailDlg(0), _canDeleteMaildrop( true )
{
_loadSubjectsCanceled = false;
setModal( true );
- // The dialog tqcontains a list view and several buttons.
+ // The dialog contains a list view and several buttons.
// Two box tqlayouts hol dthem.
TQWidget * page = new TQWidget( this );
setMainWidget(page);
@@ -88,8 +88,8 @@ KornSubjectsDlg::KornSubjectsDlg( TQWidget *parent )
_list->addColumn(i18n("Date"));
_list->addColumn(i18n("Size (Bytes)"));
- // column 3 tqcontains a number (change tqalignment)
- _list->setColumnAlignment(3, Qt::AlignRight);
+ // column 3 contains a number (change tqalignment)
+ _list->setColumnAlignment(3, TQt::AlignRight);
_list->setItemMargin(3);
// connect the selection changed and double click events of the list view