diff options
Diffstat (limited to 'kplato/kptstandardworktimedialog.cc')
-rw-r--r-- | kplato/kptstandardworktimedialog.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kplato/kptstandardworktimedialog.cc b/kplato/kptstandardworktimedialog.cc index 3e7fb267..fb5a9c0e 100644 --- a/kplato/kptstandardworktimedialog.cc +++ b/kplato/kptstandardworktimedialog.cc @@ -49,8 +49,8 @@ namespace KPlato class WeekdayListItem : public KListViewItem { public: - WeekdayListItem(Calendar *cal, int wd, KListView *tqparent, TQString name, KListViewItem *after) - : KListViewItem(tqparent, after), + WeekdayListItem(Calendar *cal, int wd, KListView *parent, TQString name, KListViewItem *after) + : KListViewItem(parent, after), original(cal->weekday(wd)), calendar(cal), weekday(wd) @@ -92,8 +92,8 @@ public: int weekday; }; -StandardWorktimeDialog::StandardWorktimeDialog(Project &p, TQWidget *tqparent, const char *name) - : KDialogBase( Swallow, i18n("Standard Worktime"), Ok|Cancel, Ok, tqparent, name, true, true), +StandardWorktimeDialog::StandardWorktimeDialog(Project &p, TQWidget *parent, const char *name) + : KDialogBase( Swallow, i18n("Standard Worktime"), Ok|Cancel, Ok, parent, name, true, true), project(p) { //kdDebug()<<k_funcinfo<<&p<<endl; @@ -144,8 +144,8 @@ void StandardWorktimeDialog::slotOk() { } -StandardWorktimeDialogImpl::StandardWorktimeDialogImpl(StandardWorktime *std, TQWidget *tqparent) - : StandardWorktimeDialogBase(tqparent), +StandardWorktimeDialogImpl::StandardWorktimeDialogImpl(StandardWorktime *std, TQWidget *parent) + : StandardWorktimeDialogBase(parent), m_std(std) { if (!std) { m_std = new StandardWorktime(); |