diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
commit | f0de9e167e289ab7dc33e57f077c1f04ec7c68c8 (patch) | |
tree | 1fc538e179833e62caec21956bfe47a252be5a72 /kugar/lib/mlabelobject.h | |
parent | 11191ef0b9908604d1d7aaca382b011ef22c454c (diff) | |
download | koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.tar.gz koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kugar/lib/mlabelobject.h')
-rw-r--r-- | kugar/lib/mlabelobject.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kugar/lib/mlabelobject.h b/kugar/lib/mlabelobject.h index 2b35f233..3526552e 100644 --- a/kugar/lib/mlabelobject.h +++ b/kugar/lib/mlabelobject.h @@ -27,9 +27,9 @@ class MLabelObject : public MReportObject public: /** Font weight constants */ enum FontWeight { Light = 25, Normal = 50, DemiBold = 63, Bold = 75, Black = 87 }; - /**Qt::Horizontal tqalignment constants */ + /**Qt::Horizontal alignment constants */ enum HAlignment { Left = 0, Center, Right }; - /** Vertial tqalignment constants */ + /** Vertial alignment constants */ enum VAlignment { Top = 0, Middle, Bottom }; /** Constructor */ @@ -52,9 +52,9 @@ protected: int fontWeight; /** Label text font italic flag */ bool fontItalic; - /** Lable text horizontal tqalignment */ + /** Lable text horizontal alignment */ int hAlignment; - /** Label text vertical tqalignment */ + /** Label text vertical alignment */ int vAlignment; /** Label text word wrap flag */ bool wordWrap; @@ -70,9 +70,9 @@ public: virtual void setText( const TQString txt ); /** Sets the label's text font - default is Times,10,Normal,false */ void setFont( const TQString family, int size, int weight, bool italic ); - /** Sets the label's horizontal tqalignment -default is Left */ + /** Sets the label's horizontal alignment -default is Left */ void setHorizontalAlignment( int a ); - /** Sets the label's vertical tqalignment - default is Top */ + /** Sets the label's vertical alignment - default is Top */ void setVerticalAlignment( int a ); /** Sets the label's word wrap flag - default is false */ void setWordWrap( bool state ); |