summaryrefslogtreecommitdiffstats
path: root/amarok/src/tagguesser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/tagguesser.cpp')
-rw-r--r--amarok/src/tagguesser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/amarok/src/tagguesser.cpp b/amarok/src/tagguesser.cpp
index deb85a3d..d37de53a 100644
--- a/amarok/src/tagguesser.cpp
+++ b/amarok/src/tagguesser.cpp
@@ -134,7 +134,7 @@ TQString FileNameScheme::composeRegExp( const TQString &s ) const
{
TQMap<TQString, TQString> substitutions;
- KConfigGroup config(TDEGlobal::config(), "TagGuesser");
+ TDEConfigGroup config(TDEGlobal::config(), "TagGuesser");
substitutions[ "title" ] = config.readEntry( "Title regexp", "([\\w\\s'&_,\\.]+)" );
substitutions[ "artist" ] = config.readEntry( "Artist regexp", "([\\w\\s'&_,\\.]+)" );
@@ -195,9 +195,9 @@ TQStringList TagGuesser::schemeStrings()
void TagGuesser::setSchemeStrings( const TQStringList &schemes )
{
- KConfig *cfg = TDEGlobal::config();
+ TDEConfig *cfg = TDEGlobal::config();
{
- KConfigGroupSaver saver( cfg, "TagGuesser" );
+ TDEConfigGroupSaver saver( cfg, "TagGuesser" );
cfg->writeEntry( "Filename schemes", schemes );
}
cfg->sync();