summaryrefslogtreecommitdiff
path: root/src/lastfm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lastfm.cpp')
-rw-r--r--src/lastfm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lastfm.cpp b/src/lastfm.cpp
index 85a68333..93896793 100644
--- a/src/lastfm.cpp
+++ b/src/lastfm.cpp
@@ -47,7 +47,7 @@ using Global::MainStartY;
Lastfm *myLastfm;
Lastfm::Lastfm()
-: Screen(NC::Scrollpad(0, MainStartY, COLS, MainHeight, "", Config.main_color, NC::brNone))
+: Screen(NC::Scrollpad(0, MainStartY, COLS, MainHeight, "", Config.main_color, NC::Border::None))
, isReadyToTake(0), isDownloadInProgress(0)
{ }
@@ -174,7 +174,7 @@ void Lastfm::Download()
itsService->colorizeOutput(w);
}
else
- w << NC::clRed << result.second << NC::clEnd;
+ w << NC::Color::Red << result.second << NC::Color::End;
isReadyToTake = 1;
}