diff options
Diffstat (limited to 'Userland/Applications/Calculator/Keypad.h')
-rw-r--r-- | Userland/Applications/Calculator/Keypad.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Calculator/Keypad.h b/Userland/Applications/Calculator/Keypad.h index ce57847284..7fb9799378 100644 --- a/Userland/Applications/Calculator/Keypad.h +++ b/Userland/Applications/Calculator/Keypad.h @@ -7,7 +7,7 @@ #pragma once -#include <AK/String.h> +#include <AK/DeprecatedString.h> #include <LibCrypto/BigFraction/BigFraction.h> #include <LibCrypto/BigInt/UnsignedBigInteger.h> @@ -33,7 +33,7 @@ public: void set_rounding_length(unsigned); unsigned rounding_length() const; - String to_string() const; + DeprecatedString to_string() const; private: // Internal representation of the current decimal value. |