diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:18:28 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:18:28 -0600 |
commit | 934db26c3f8efe148a5680c22f965ee10f818a61 (patch) | |
tree | 4a47cbb3ef398d11fa9283b5afdcd0a8d84fad7c /src/linklabel.cpp | |
parent | a1fb52e00e362130a46b34570e53f2c1f322f373 (diff) | |
download | basket-934db26c3f8efe148a5680c22f965ee10f818a61.tar.gz basket-934db26c3f8efe148a5680c22f965ee10f818a61.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/linklabel.cpp')
-rw-r--r-- | src/linklabel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/linklabel.cpp b/src/linklabel.cpp index 01978d8..8e2de2a 100644 --- a/src/linklabel.cpp +++ b/src/linklabel.cpp @@ -114,9 +114,9 @@ TQColor LinkLook::effectiveHoverColor() const TQColor LinkLook::defaultColor() const { if (m_useLinkColor) - return KGlobalSettings::linkColor(); + return TDEGlobalSettings::linkColor(); else - return KGlobalSettings::textColor(); + return TDEGlobalSettings::textColor(); } TQColor LinkLook::defaultHoverColor() const @@ -455,7 +455,7 @@ void LinkDisplay::paint(TQPainter *painter, int x, int y, int width, int height, // Figure out the text color: if (isSelected) - painter->setPen(KGlobalSettings::highlightedTextColor()); + painter->setPen(TDEGlobalSettings::highlightedTextColor()); else if (isIconButtonHovered) painter->setPen(m_look->effectiveHoverColor()); else if (!isDefaultColor || (!m_look->color().isValid() && !m_look->useLinkColor())) // If the color is FORCED or if the link color default to the text color: |