Changeset 25 for lib/mpdparseutils.cpp


Ignore:
Timestamp:
12/31/07 15:06:00 (4 years ago)
Author:
sander
Message:

Preferences dialog is now functional and pops up when no connection can be made

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/mpdparseutils.cpp

    r19 r25  
    7979                if(j != 1 && j != tokens.size() - 1) 
    8080                    song->album += ":"; 
    81                 song->album += tokens.at(j); 
     81                song->album += QString::fromUtf8(tokens.at(j)); 
    8282            } 
    8383        } else if(tokens.at(0) == "Artist") { 
     
    8585                if(j != 1 && j != tokens.size() - 1) 
    8686                    song->artist += ":"; 
    87                 song->artist += tokens.at(j); 
     87                song->artist += QString::fromUtf8(tokens.at(j)); 
    8888            } 
    8989        } else if(tokens.at(0) == "Title") { 
     
    9191                if(j != 1 && j != tokens.size() - 1) 
    9292                    song->title += ":"; 
    93                 song->title += tokens.at(j); 
     93                song->title += QString::fromUtf8(tokens.at(j)); 
    9494            } 
    9595        } else if(tokens.at(0) == "Track") { 
Note: See TracChangeset for help on using the changeset viewer.