diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:29:36 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:29:36 -0600 |
commit | 59d9dbf810de71334e1173fa7dda59209c10032c (patch) | |
tree | 9091f90565a6b444b49d6624fb9a833930b818fc /src/urlnavigatorbutton.cpp | |
parent | 6f9ad886fd16b883bed1f6fa731bd709de0afb9c (diff) | |
download | dolphin-59d9dbf810de71334e1173fa7dda59209c10032c.tar.gz dolphin-59d9dbf810de71334e1173fa7dda59209c10032c.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/urlnavigatorbutton.cpp')
-rw-r--r-- | src/urlnavigatorbutton.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/urlnavigatorbutton.cpp b/src/urlnavigatorbutton.cpp index 8d893f9..64064bb 100644 --- a/src/urlnavigatorbutton.cpp +++ b/src/urlnavigatorbutton.cpp @@ -104,7 +104,7 @@ void URLNavigatorButton::drawButton(TQPainter* painter) foregroundColor = KGlobalSettings::highlightedTextColor(); } else { - backgroundColor = tqcolorGroup().background(); + backgroundColor = colorGroup().background(); foregroundColor = KGlobalSettings::buttonTextColor(); } @@ -114,7 +114,7 @@ void URLNavigatorButton::drawButton(TQPainter* painter) const bool isActive = (dolphin.activeView() == parentView); if (!isActive) { - TQColor dimmColor(tqcolorGroup().background()); + TQColor dimmColor(colorGroup().background()); foregroundColor = mixColors(foregroundColor, dimmColor); if (isHighlighted) { backgroundColor = mixColors(backgroundColor, dimmColor); @@ -331,7 +331,7 @@ void URLNavigatorButton::listJobFinished(KIO::Job* job) ++it; } - int result = dirsMenu->exec(urlNavigator()->mapToGlobal(tqgeometry().bottomLeft())); + int result = dirsMenu->exec(urlNavigator()->mapToGlobal(geometry().bottomLeft())); if (result >= 0) { KURL url = urlNavigator()->url(m_index); |