~ubuntu-branches/ubuntu/wily/kid3/wily-proposed

« back to all changes in this revision

Viewing changes to src/core/import/tracktypeimporter.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2012-05-14 18:27:44 UTC
  • mfrom: (1.1.14) (2.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20120514182744-4tul4661q4rao8vm
Tags: 2.1-2
Remove patch 01-gcc4.7-ftbfs, it was merged with 2.1 to another location.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
/**
35
35
 * Constructor.
36
36
 *
37
 
 * @param parent          parent object
 
37
 * @param netMgr network access manager
38
38
 * @param trackDataModel track data to be filled with imported values
39
39
 */
40
 
TrackTypeImporter::TrackTypeImporter(QObject* parent,
41
 
                                     TrackDataModel* trackDataModel) :
42
 
  FreedbImporter(parent, trackDataModel)
 
40
TrackTypeImporter::TrackTypeImporter(QNetworkAccessManager* netMgr,
 
41
                                     TrackDataModel *trackDataModel) :
 
42
  FreedbImporter(netMgr, trackDataModel)
43
43
{
44
44
  setObjectName("TrackTypeImporter");
45
45
}