summaryrefslogtreecommitdiffstats
path: root/src/k3bthememanager.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-24 13:19:29 -0600
committerTimothy Pearson <[email protected]>2013-01-24 13:19:29 -0600
commit2a3ced9fbd85b4fdbfa9b0a91f8d22e35ceaf6b5 (patch)
tree36de2281c8b4cf238a5e27a76b5c6e07f40151ab /src/k3bthememanager.cpp
parent2a3289ab87c52551fd2f5655492988ca02c17892 (diff)
downloadk3b-2a3ced9fbd85b4fdbfa9b0a91f8d22e35ceaf6b5.tar.gz
k3b-2a3ced9fbd85b4fdbfa9b0a91f8d22e35ceaf6b5.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'src/k3bthememanager.cpp')
-rw-r--r--src/k3bthememanager.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/k3bthememanager.cpp b/src/k3bthememanager.cpp
index 3471342..a73bb2b 100644
--- a/src/k3bthememanager.cpp
+++ b/src/k3bthememanager.cpp
@@ -42,7 +42,7 @@ TQColor K3bTheme::backgroundColor() const
if( m_bgColor.isValid() )
return m_bgColor;
else
- return KGlobalSettings::activeTitleColor();
+ return TDEGlobalSettings::activeTitleColor();
}
@@ -51,7 +51,7 @@ TQColor K3bTheme::foregroundColor() const
if( m_fgColor.isValid() )
return m_fgColor;
else
- return KGlobalSettings::activeTextColor();
+ return TDEGlobalSettings::activeTextColor();
}
@@ -256,7 +256,7 @@ void K3bThemeManager::loadThemes()
delete *it;
d->themes.clear();
- TQStringList dirs = KGlobal::dirs()->findDirs( "data", "k3b/pics" );
+ TQStringList dirs = TDEGlobal::dirs()->findDirs( "data", "k3b/pics" );
// now search for themes. As there may be multiple themes with the same name
// we only use the names from this list and then use findResourceDir to make sure
// the local is preferred over the global stuff (like testing a theme by copying it
@@ -299,7 +299,7 @@ void K3bThemeManager::loadThemes()
void K3bThemeManager::loadTheme( const TQString& name )
{
- TQString path = KGlobal::dirs()->findResource( "data", "k3b/pics/" + name + "/k3b.theme" );
+ TQString path = TDEGlobal::dirs()->findResource( "data", "k3b/pics/" + name + "/k3b.theme" );
if( !path.isEmpty() ) {
K3bTheme* t = new K3bTheme();
t->m_name = name;