~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to libkcddb/lookup.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
    if (  200 == serverStatus )
44
44
    {
45
 
      QStringList tokenList = line.split( ' ', QString::SkipEmptyParts );
 
45
      QStringList tokenList = line.split( QLatin1Char( ' ' ), QString::SkipEmptyParts );
46
46
      matchList_.append(  qMakePair(  tokenList[  1 ], tokenList[  2 ] ) );
47
47
      return Success;
48
48
    }
61
61
    void
62
62
  Lookup::parseExtraMatch(  const QString & line )
63
63
  {
64
 
    QStringList tokenList = line.split( ' ', QString::SkipEmptyParts );
 
64
    QStringList tokenList = line.split( QLatin1Char( ' ' ), QString::SkipEmptyParts );
65
65
    matchList_.append(  qMakePair(  tokenList[  0 ], tokenList[  1 ] ) );
66
66
  }
67
67