diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:31 -0600 |
commit | c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54 (patch) | |
tree | 1ee1912ac4bb966475f0db0f2a78678661b4b4a5 /karbon/core/vtext.h | |
parent | 94844816550ad672ccfcdc25659c625546239998 (diff) | |
download | koffice-c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54.tar.gz koffice-c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 94844816550ad672ccfcdc25659c625546239998.
Diffstat (limited to 'karbon/core/vtext.h')
-rw-r--r-- | karbon/core/vtext.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/karbon/core/vtext.h b/karbon/core/vtext.h index 234332df..ef40ac28 100644 --- a/karbon/core/vtext.h +++ b/karbon/core/vtext.h @@ -57,7 +57,7 @@ public: }; VText( VObject* parent, VState state = normal ); - VText( const TQFont &font, const VSubpath& basePath, Position position, Alignment alignment, const TQString& text ); + VText( const TQFont &font, const VSubpath& basePath, Position position, Alignment tqalignment, const TQString& text ); VText( const VText& text ); virtual ~VText(); virtual DCOPObject* dcopObject(); @@ -70,8 +70,8 @@ public: virtual VSubpath& basePath() { return m_basePath; } virtual void setPosition( Position position ) { m_position = position; } virtual Position position() { return m_position; } - virtual void setAlignment( Alignment alignment ) { m_alignment = alignment; } - virtual Alignment alignment() { return m_alignment; } + virtual void tqsetAlignment( Alignment tqalignment ) { m_tqalignment = tqalignment; } + virtual Alignment tqalignment() { return m_tqalignment; } virtual void setUseShadow( bool state ) { m_shadow = state; } virtual bool useShadow() { return m_shadow; } virtual void setShadow( int angle, int distance, bool translucent ) @@ -118,8 +118,8 @@ private: VSubpath m_basePath; // The text position Position m_position; - // The text alignment - Alignment m_alignment; + // The text tqalignment + Alignment m_tqalignment; // The text to draw TQString m_text; // Shadow parameters |