diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kate/part/kateattribute.cpp | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/part/kateattribute.cpp')
-rw-r--r-- | kate/part/kateattribute.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kate/part/kateattribute.cpp b/kate/part/kateattribute.cpp index 5de93a406..9ed6349f6 100644 --- a/kate/part/kateattribute.cpp +++ b/kate/part/kateattribute.cpp @@ -19,7 +19,7 @@ #include "kateattribute.h" KateAttribute::KateAttribute() - : m_weight(QFont::Normal) + : m_weight(TQFont::Normal) , m_italic(false) , m_underline(false) , m_overline(false) @@ -73,9 +73,9 @@ KateAttribute& KateAttribute::operator+=(const KateAttribute& a) return *this; } -QFont KateAttribute::font(const QFont& ref) +TQFont KateAttribute::font(const TQFont& ref) { - QFont ret = ref; + TQFont ret = ref; if (itemSet(Weight)) ret.setWeight(weight()); @@ -105,7 +105,7 @@ void KateAttribute::setWeight(int weight) void KateAttribute::setBold(bool enable) { - setWeight(enable ? QFont::Bold : QFont::Normal); + setWeight(enable ? TQFont::Bold : TQFont::Normal); } void KateAttribute::setItalic(bool enable) @@ -156,7 +156,7 @@ void KateAttribute::setStrikeOut(bool enable) } } -void KateAttribute::setOutline(const QColor& color) +void KateAttribute::setOutline(const TQColor& color) { if (!(m_itemsSet & Outline) || m_outline != color) { @@ -168,7 +168,7 @@ void KateAttribute::setOutline(const QColor& color) } } -void KateAttribute::setTextColor(const QColor& color) +void KateAttribute::setTextColor(const TQColor& color) { if (!(m_itemsSet & TextColor) || m_textColor != color) { @@ -180,7 +180,7 @@ void KateAttribute::setTextColor(const QColor& color) } } -void KateAttribute::setSelectedTextColor(const QColor& color) +void KateAttribute::setSelectedTextColor(const TQColor& color) { if (!(m_itemsSet & SelectedTextColor) || m_selectedTextColor != color) { @@ -192,7 +192,7 @@ void KateAttribute::setSelectedTextColor(const QColor& color) } } -void KateAttribute::setBGColor(const QColor& color) +void KateAttribute::setBGColor(const TQColor& color) { if (!(m_itemsSet & BGColor) || m_bgColor != color) { @@ -204,7 +204,7 @@ void KateAttribute::setBGColor(const QColor& color) } } -void KateAttribute::setSelectedBGColor(const QColor& color) +void KateAttribute::setSelectedBGColor(const TQColor& color) { if (!(m_itemsSet & SelectedBGColor) || m_selectedBGColor != color) { |