diff options
author | Tao Bao <tbao@google.com> | 2017-03-24 21:34:37 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-03-24 21:34:37 +0100 |
commit | d51bd8770a7bce1d2ead5b30e7bce71ea93b6af4 (patch) | |
tree | 0feff3c2e55eb9be9731cd46bf657a1bd0cd6c25 /screen_ui.cpp | |
parent | Merge "Removed C-style casts" am: 110155a604 (diff) | |
parent | Merge "Const modifiers" (diff) | |
download | android_bootable_recovery-d51bd8770a7bce1d2ead5b30e7bce71ea93b6af4.tar android_bootable_recovery-d51bd8770a7bce1d2ead5b30e7bce71ea93b6af4.tar.gz android_bootable_recovery-d51bd8770a7bce1d2ead5b30e7bce71ea93b6af4.tar.bz2 android_bootable_recovery-d51bd8770a7bce1d2ead5b30e7bce71ea93b6af4.tar.lz android_bootable_recovery-d51bd8770a7bce1d2ead5b30e7bce71ea93b6af4.tar.xz android_bootable_recovery-d51bd8770a7bce1d2ead5b30e7bce71ea93b6af4.tar.zst android_bootable_recovery-d51bd8770a7bce1d2ead5b30e7bce71ea93b6af4.zip |
Diffstat (limited to 'screen_ui.cpp')
-rw-r--r-- | screen_ui.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp index 706877b4d..bb2772dd8 100644 --- a/screen_ui.cpp +++ b/screen_ui.cpp @@ -98,7 +98,7 @@ GRSurface* ScreenRecoveryUI::GetCurrentText() { } } -int ScreenRecoveryUI::PixelsFromDp(int dp) { +int ScreenRecoveryUI::PixelsFromDp(int dp) const { return dp * density_; } @@ -256,12 +256,12 @@ void ScreenRecoveryUI::DrawHorizontalRule(int* y) { *y += 4; } -void ScreenRecoveryUI::DrawTextLine(int x, int* y, const char* line, bool bold) { +void ScreenRecoveryUI::DrawTextLine(int x, int* y, const char* line, bool bold) const { gr_text(gr_sys_font(), x, *y, line, bold); *y += char_height_ + 4; } -void ScreenRecoveryUI::DrawTextLines(int x, int* y, const char* const* lines) { +void ScreenRecoveryUI::DrawTextLines(int x, int* y, const char* const* lines) const { for (size_t i = 0; lines != nullptr && lines[i] != nullptr; ++i) { DrawTextLine(x, y, lines[i], false); } |