summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/reports/reportwidgets.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit04766b207afba7961d4d802313e426f5a2fbef63 (patch)
treec888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /kexi/plugins/reports/reportwidgets.cpp
parentb6edfe41c9395f2e20784cbf0e630af6426950a3 (diff)
downloadkoffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz
koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/plugins/reports/reportwidgets.cpp')
-rw-r--r--kexi/plugins/reports/reportwidgets.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kexi/plugins/reports/reportwidgets.cpp b/kexi/plugins/reports/reportwidgets.cpp
index c3ca65e4..7cea50a3 100644
--- a/kexi/plugins/reports/reportwidgets.cpp
+++ b/kexi/plugins/reports/reportwidgets.cpp
@@ -28,16 +28,16 @@
#include "kexireportview.h"
#include "reportwidgets.h"
-Label::Label(const TQString &text, TQWidget *tqparent, const char *name)
-: TQLabel(text, tqparent, name)
+Label::Label(const TQString &text, TQWidget *parent, const char *name)
+: TQLabel(text, parent, name)
{
setPaletteBackgroundColor(white);
}
////////////////////////////////////////////////////////////////////
-ReportLine::ReportLine(TQWidget *tqparent, const char *name)
-: TQWidget(tqparent, name)
+ReportLine::ReportLine(TQWidget *parent, const char *name)
+: TQWidget(parent, name)
{
m_lineStyle = (ReportLineStyle)TQt::SolidLine;
m_lineWidth = 1;
@@ -113,8 +113,8 @@ ReportLine::paintEvent (TQPaintEvent *ev)
////////////////////////////////////////////////////////////////////
-PicLabel::PicLabel(const TQPixmap &pix, TQWidget *tqparent, const char *name)
- : TQLabel(tqparent, name)
+PicLabel::PicLabel(const TQPixmap &pix, TQWidget *parent, const char *name)
+ : TQLabel(parent, name)
{
setPixmap(pix);
setScaledContents(false);
@@ -131,8 +131,8 @@ PicLabel::setProperty(const char *name, const TQVariant &value)
////////////////////////////////////////////////////////////////////
-KexiSubReport::KexiSubReport(TQWidget *tqparent, const char *name)
-: TQScrollView(tqparent, name), m_form(0), m_widget(0)
+KexiSubReport::KexiSubReport(TQWidget *parent, const char *name)
+: TQScrollView(parent, name), m_form(0), m_widget(0)
{
setFrameStyle(TQFrame::Plain | TQFrame::Box);
viewport()->setPaletteBackgroundColor(white);