summaryrefslogtreecommitdiffstats
path: root/amarok/src/playlistbrowseritem.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-14 17:55:21 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-14 17:55:21 +0000
commit4cb09d377b01f966ab8e790d64f4f8fcc2bb9ecd (patch)
tree0afa7d69b50cb912a4a69a6406e7b6fb7894911c /amarok/src/playlistbrowseritem.cpp
parenteb88625a55dbaa7e92042d96241e9ddda4604862 (diff)
downloadamarok-4cb09d377b01f966ab8e790d64f4f8fcc2bb9ecd.tar.gz
amarok-4cb09d377b01f966ab8e790d64f4f8fcc2bb9ecd.zip
Fix Amarok FTBFS under Autotools
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/amarok@1247158 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'amarok/src/playlistbrowseritem.cpp')
-rw-r--r--amarok/src/playlistbrowseritem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/amarok/src/playlistbrowseritem.cpp b/amarok/src/playlistbrowseritem.cpp
index 229340c4..c64644c0 100644
--- a/amarok/src/playlistbrowseritem.cpp
+++ b/amarok/src/playlistbrowseritem.cpp
@@ -3150,7 +3150,7 @@ TQString SmartPlaylist::query()
return TQString( m_sqlForTags.tqunicode(), m_sqlForTags.length() )
.replace( "(*CurrentTimeT*)" ,
TQString::number(TQDateTime::tqcurrentDateTime().toTime_t()) )
- .replace( "(*ListOfFields*)" , QueryBuilder::dragSTQLFields() )
+ .replace( "(*ListOfFields*)" , QueryBuilder::dragSQLFields() )
.replace( "(*MountedDeviceSelection*)" ,
CollectionDB::instance()->deviceidSelection() );
}
@@ -3160,7 +3160,7 @@ TQString
SmartPlaylist::xmlToQuery(const TQDomElement &xml, bool forExpand /* = false */) {
QueryBuilder qb;
- qb.initSTQLDrag();
+ qb.initSQLDrag();
// This code is partly copied from SmartPlaylistEditor -- but refactoring
// to have it common would involve adding an internal data structure for smart
// playlist queries. I think having the XML be that data structure is almost as good,