diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:18:58 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:18:58 -0600 |
commit | 6d3902bd20c24613b2f13f5c04294ff83f104006 (patch) | |
tree | 6cf224cc11b6dfd4ebf884b1045ff7e95de7c8e7 /src/infosidebarpage.cpp | |
parent | 87346b386fec7055f53b607d9cad63f48fbb8e28 (diff) | |
download | dolphin-6d3902bd20c24613b2f13f5c04294ff83f104006.tar.gz dolphin-6d3902bd20c24613b2f13f5c04294ff83f104006.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/infosidebarpage.cpp')
-rw-r--r-- | src/infosidebarpage.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index 8efcba5..f713bd1 100644 --- a/src/infosidebarpage.cpp +++ b/src/infosidebarpage.cpp @@ -435,7 +435,7 @@ void InfoSidebarPage::insertActions() // 'itemList' contains now all KFileItems, where an item information should be shown. // TODO: the following algorithm is quite equal to DolphinContextMenu::insertActionItems(). // It's open yet whether they should be merged or whether they have to work slightly different. - TQStringList dirs = KGlobal::dirs()->findDirs("data", "d3lphin/servicemenus/"); + TQStringList dirs = TDEGlobal::dirs()->findDirs("data", "d3lphin/servicemenus/"); for (TQStringList::ConstIterator dirIt = dirs.begin(); dirIt != dirs.end(); ++dirIt) { TQDir dir(*dirIt); TQStringList entries = dir.entryList("*.desktop", TQDir::Files); @@ -553,12 +553,12 @@ void ServiceButton::drawButton(TQPainter* painter) TQColor backgroundColor; TQColor foregroundColor; if (m_hover) { - backgroundColor = KGlobalSettings::highlightColor(); - foregroundColor = KGlobalSettings::highlightedTextColor(); + backgroundColor = TDEGlobalSettings::highlightColor(); + foregroundColor = TDEGlobalSettings::highlightedTextColor(); } else { backgroundColor = colorGroup().background(); - foregroundColor = KGlobalSettings::buttonTextColor(); + foregroundColor = TDEGlobalSettings::buttonTextColor(); } // draw button background |