summaryrefslogtreecommitdiffstats
path: root/korganizer/interfaces/korganizer/incidencechangerbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/interfaces/korganizer/incidencechangerbase.h')
-rw-r--r--korganizer/interfaces/korganizer/incidencechangerbase.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/korganizer/interfaces/korganizer/incidencechangerbase.h b/korganizer/interfaces/korganizer/incidencechangerbase.h
index ba4faf06..169ea1b2 100644
--- a/korganizer/interfaces/korganizer/incidencechangerbase.h
+++ b/korganizer/interfaces/korganizer/incidencechangerbase.h
@@ -41,14 +41,14 @@ class IncidenceChangerBase : public TQObject
Q_OBJECT
TQ_OBJECT
public:
- IncidenceChangerBase( Calendar*cal, TQObject *tqparent = 0 ) :
- TQObject( tqparent ), mCalendar( cal ) {}
+ IncidenceChangerBase( Calendar*cal, TQObject *parent = 0 ) :
+ TQObject( parent ), mCalendar( cal ) {}
virtual ~IncidenceChangerBase() {}
virtual bool sendGroupwareMessage( Incidence *incidence,
KCal::Scheduler::Method method,
KOGlobals::HowChanged action,
- TQWidget *tqparent ) = 0;
+ TQWidget *parent ) = 0;
virtual bool beginChange( Incidence *incidence,
ResourceCalendar *res, const TQString &subRes ) = 0;
@@ -57,20 +57,20 @@ public:
virtual bool addIncidence( Incidence *incidence,
ResourceCalendar *res, const TQString &subRes,
- TQWidget *tqparent ) = 0;
+ TQWidget *parent ) = 0;
virtual bool addIncidence( Incidence *incidence,
ResourceCalendar *res, const TQString &subRes,
- TQWidget *tqparent, int dontAskForGroupware) = 0;
+ TQWidget *parent, int dontAskForGroupware) = 0;
virtual bool changeIncidence( Incidence *oldinc, Incidence *newinc,
- KOGlobals::WhatChanged, TQWidget *tqparent ) = 0;
+ KOGlobals::WhatChanged, TQWidget *parent ) = 0;
virtual bool changeIncidence( Incidence *oldinc, Incidence *newinc,
- KOGlobals::WhatChanged, TQWidget *tqparent, int dontAskForGroupware ) = 0;
+ KOGlobals::WhatChanged, TQWidget *parent, int dontAskForGroupware ) = 0;
- virtual bool deleteIncidence( Incidence *incidence, TQWidget *tqparent ) = 0;
+ virtual bool deleteIncidence( Incidence *incidence, TQWidget *parent ) = 0;
- virtual bool cutIncidences( const Incidence::List &incidences, TQWidget *tqparent ) = 0;
- virtual bool cutIncidence( Incidence *incidence, TQWidget *tqparent ) = 0;
+ virtual bool cutIncidences( const Incidence::List &incidences, TQWidget *parent ) = 0;
+ virtual bool cutIncidence( Incidence *incidence, TQWidget *parent ) = 0;
signals:
void incidenceAdded( Incidence * );