summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/reports/kexireportpart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/plugins/reports/kexireportpart.cpp')
-rw-r--r--kexi/plugins/reports/kexireportpart.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kexi/plugins/reports/kexireportpart.cpp b/kexi/plugins/reports/kexireportpart.cpp
index 6b9c6bc3..08c4cf7c 100644
--- a/kexi/plugins/reports/kexireportpart.cpp
+++ b/kexi/plugins/reports/kexireportpart.cpp
@@ -43,8 +43,8 @@
KFormDesigner::WidgetLibrary* KexiReportPart::static_reportsLibrary = 0L;
-KexiReportPart::KexiReportPart(TQObject *tqparent, const char *name, const TQStringList &l)
- : KexiPart::Part(tqparent, name, l)
+KexiReportPart::KexiReportPart(TQObject *parent, const char *name, const TQStringList &l)
+ : KexiPart::Part(parent, name, l)
{
// REGISTERED ID:
m_registeredPartID = (int)KexiPart::ReportObjectType;
@@ -101,7 +101,7 @@ KexiReportPart::createTempData(KexiDialogBase* dialog)
}
KexiViewBase*
-KexiReportPart::createView(TQWidget *tqparent, KexiDialogBase* dialog,
+KexiReportPart::createView(TQWidget *parent, KexiDialogBase* dialog,
KexiPart::Item &item, int, TQMap<TQString,TQString>*)
{
kexipluginsdbg << "KexiReportPart::createView()" << endl;
@@ -109,7 +109,7 @@ KexiReportPart::createView(TQWidget *tqparent, KexiDialogBase* dialog,
if (!win || !win->project() || !win->project()->dbConnection())
return 0;
- KexiReportView *view = new KexiReportView(win, tqparent, item.name().latin1(),
+ KexiReportView *view = new KexiReportView(win, parent, item.name().latin1(),
win->project()->dbConnection() );
return view;
@@ -128,8 +128,8 @@ KexiReportPart::i18nMessage(const TQCString& englishMessage, KexiDialogBase* dlg
//---------------
-KexiReportPart::TempData::TempData(TQObject* tqparent)
- : KexiDialogTempData(tqparent)
+KexiReportPart::TempData::TempData(TQObject* parent)
+ : KexiDialogTempData(parent)
{
}