summaryrefslogtreecommitdiff
path: root/Userland/Applications/Calculator/Keypad.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/Calculator/Keypad.cpp')
-rw-r--r--Userland/Applications/Calculator/Keypad.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Applications/Calculator/Keypad.cpp b/Userland/Applications/Calculator/Keypad.cpp
index 63b89432c7..b89e0f5d2e 100644
--- a/Userland/Applications/Calculator/Keypad.cpp
+++ b/Userland/Applications/Calculator/Keypad.cpp
@@ -112,10 +112,10 @@ void Keypad::set_to_0()
m_state = State::External;
}
-DeprecatedString Keypad::to_string() const
+DeprecatedString Keypad::to_deprecated_string() const
{
if (m_state == State::External)
- return m_internal_value.to_string(m_displayed_fraction_length);
+ return m_internal_value.to_deprecated_string(m_displayed_fraction_length);
StringBuilder builder;
@@ -133,7 +133,7 @@ DeprecatedString Keypad::to_string() const
builder.append(frac_value);
}
- return builder.to_string();
+ return builder.to_deprecated_string();
}
void Keypad::set_rounding_length(unsigned rounding_threshold)