~ubuntu-branches/ubuntu/lucid/lastfm/lucid

« back to all changes in this revision

Viewing changes to src/libUnicorn/CachedHttpJanitor.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Devid Filoni
  • Date: 2008-07-14 16:46:20 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20080714164620-cattx7c83ihhnk4l
Tags: upstream-1.5.1.31879.dfsg
ImportĀ upstreamĀ versionĀ 1.5.1.31879.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 ***************************************************************************/
20
20
 
21
21
#include "CachedHttpJanitor.h"
 
22
#include "logger.h"
22
23
#include "Settings.h"
23
24
 
24
25
#include <QDir>
25
 
#include <QDebug>
26
26
#include <QDateTime>
27
27
 
28
28
 
29
 
CachedHttpJanitor::CachedHttpJanitor( const QString& cacheDir, QObject* parent ) :
30
 
    QThread( parent ),
31
 
    m_cacheDir( cacheDir ),
32
 
    m_abort( false )
 
29
CachedHttpJanitor::CachedHttpJanitor( const QString& cacheDir, QObject* parent )
 
30
      : QThread( parent ),
 
31
        m_cacheDir( cacheDir ),
 
32
        m_abort( false )
33
33
{
34
34
    start();
35
35
}