diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:32:11 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:32:11 -0600 |
commit | 94844816550ad672ccfcdc25659c625546239998 (patch) | |
tree | e35fc60fd736c645d59f6408af032774ad8023d3 /kivio/kiviopart/kiviosdk/kivio_shape.h | |
parent | 2a811c38c74c03648ecf857e566c44483cbad706 (diff) | |
download | koffice-94844816550ad672ccfcdc25659c625546239998.tar.gz koffice-94844816550ad672ccfcdc25659c625546239998.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'kivio/kiviopart/kiviosdk/kivio_shape.h')
-rw-r--r-- | kivio/kiviopart/kiviosdk/kivio_shape.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kivio/kiviopart/kiviosdk/kivio_shape.h b/kivio/kiviopart/kiviosdk/kivio_shape.h index c83607d7..42adfed6 100644 --- a/kivio/kiviopart/kiviosdk/kivio_shape.h +++ b/kivio/kiviopart/kiviosdk/kivio_shape.h @@ -26,7 +26,7 @@ class KivioShape { protected: - KivioShapeData m_tqshapeData; // The data inside this tqshape + KivioShapeData m_shapeData; // The data inside this shape public: KivioShape(); @@ -39,9 +39,9 @@ public: bool loadXML( const TQDomElement & ); TQDomElement saveXML( TQDomDocument & ); - KivioShapeData::KivioShapeType tqshapeType() { return m_tqshapeData.tqshapeType(); } + KivioShapeData::KivioShapeType shapeType() { return m_shapeData.shapeType(); } - KivioShapeData *tqshapeData() { return &m_tqshapeData; } + KivioShapeData *shapeData() { return &m_shapeData; } static KivioShape *loadShapeArc( const TQDomElement & ); static KivioShape *loadShapeClosedPath( const TQDomElement & ); |