diff options
Diffstat (limited to 'kugar/kudesigner_lib/reportitem.cpp')
-rw-r--r-- | kugar/kudesigner_lib/reportitem.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kugar/kudesigner_lib/reportitem.cpp b/kugar/kudesigner_lib/reportitem.cpp index c986c970..78446a9e 100644 --- a/kugar/kudesigner_lib/reportitem.cpp +++ b/kugar/kudesigner_lib/reportitem.cpp @@ -88,19 +88,19 @@ void ReportItem::updateGeomProps() Band *ReportItem::section() { - return tqparentSection; + return parentSection; } void ReportItem::setSection( Band *section ) { props[ "X" ].setValue( ( int ) ( x() - section->x() ) ); props[ "Y" ].setValue( ( int ) ( y() - section->y() ) ); - tqparentSection = section; + parentSection = section; } void ReportItem::setSectionUndestructive( Band *section ) { - tqparentSection = section; + parentSection = section; } TQString ReportItem::getXml() |