diff options
Diffstat (limited to 'korganizer/plugins/timespanview/timespanview.cpp')
-rw-r--r-- | korganizer/plugins/timespanview/timespanview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/korganizer/plugins/timespanview/timespanview.cpp b/korganizer/plugins/timespanview/timespanview.cpp index 3f9e2ee57..24a45abb1 100644 --- a/korganizer/plugins/timespanview/timespanview.cpp +++ b/korganizer/plugins/timespanview/timespanview.cpp @@ -35,17 +35,17 @@ using namespace KOrg; class TimespanViewFactory : public KOrg::PartFactory { public: - KOrg::Part *create( KOrg::MainWindow *tqparent, const char *name ) + KOrg::Part *create( KOrg::MainWindow *parent, const char *name ) { - return new TimespanView( tqparent, name ); + return new TimespanView( parent, name ); } }; K_EXPORT_COMPONENT_FACTORY( libkorg_timespanview, TimespanViewFactory ) -TimespanView::TimespanView(KOrg::MainWindow *tqparent, const char *name) : - KOrg::Part(tqparent,name), mView(0) +TimespanView::TimespanView(KOrg::MainWindow *parent, const char *name) : + KOrg::Part(parent,name), mView(0) { setInstance( new KInstance( "korganizer" ) ); |