diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-10-06 02:51:07 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-10-06 02:51:07 +0200 |
commit | 43924f88e1bb5b6ae8420d25d95f4f4d57c5461b (patch) | |
tree | a60800c59818407a7ea50926aee902fc94cc75bf /src/lastfm_service.cpp | |
parent | eda2ea37a9725a954accb1c65be2e1d79b659cc0 (diff) |
scrollpad: use std::string as container
Diffstat (limited to 'src/lastfm_service.cpp')
-rw-r--r-- | src/lastfm_service.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lastfm_service.cpp b/src/lastfm_service.cpp index 34dea81b..cb30635e 100644 --- a/src/lastfm_service.cpp +++ b/src/lastfm_service.cpp @@ -104,8 +104,8 @@ bool ArtistInfo::checkArgs(const Args &args) void ArtistInfo::colorizeOutput(NC::Scrollpad &w) { - w.setProperties(NC::fmtBold, L"\n\nSimilar artists:\n", NC::fmtBoldEnd, 0); - w.setProperties(Config.color2, L"\n * ", NC::clEnd, 0); + w.setProperties(NC::fmtBold, "\n\nSimilar artists:\n", NC::fmtBoldEnd, 0); + w.setProperties(Config.color2, "\n * ", NC::clEnd, 0); } bool ArtistInfo::parse(std::string &data) |