summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/integrator/cvsserviceintegrator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/cvsservice/integrator/cvsserviceintegrator.cpp')
-rw-r--r--vcs/cvsservice/integrator/cvsserviceintegrator.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcs/cvsservice/integrator/cvsserviceintegrator.cpp b/vcs/cvsservice/integrator/cvsserviceintegrator.cpp
index 1bbc3b11..13cc370e 100644
--- a/vcs/cvsservice/integrator/cvsserviceintegrator.cpp
+++ b/vcs/cvsservice/integrator/cvsserviceintegrator.cpp
@@ -28,9 +28,9 @@ static const KDevPluginInfo data("kdevcvsserviceintegrator");
typedef KDevGenericFactory<CVSServiceIntegrator> CVSIntegratorFactory;
K_EXPORT_COMPONENT_FACTORY( libcvsserviceintegrator, CVSIntegratorFactory(data) )
-CVSServiceIntegrator::CVSServiceIntegrator(TQObject* parent, const char* name,
+CVSServiceIntegrator::CVSServiceIntegrator(TQObject* tqparent, const char* name,
const TQStringList args)
- :KDevVCSIntegrator(parent, name)
+ :KDevVCSIntegrator(tqparent, name)
{
}
@@ -38,14 +38,14 @@ CVSServiceIntegrator::~CVSServiceIntegrator( )
{
}
-VCSDialog* CVSServiceIntegrator::fetcher(TQWidget* parent)
+VCSDialog* CVSServiceIntegrator::fetcher(TQWidget* tqparent)
{
return 0;
}
-VCSDialog* CVSServiceIntegrator::integrator(TQWidget* parent)
+VCSDialog* CVSServiceIntegrator::integrator(TQWidget* tqparent)
{
- IntegratorDlg *dlg = new IntegratorDlg(this, parent);
+ IntegratorDlg *dlg = new IntegratorDlg(this, tqparent);
return dlg;
}