mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:07:45 +00:00
Calculator: Convert DeprecatedString to String
This commit is contained in:
parent
9677d8eeac
commit
6b72fc0924
4 changed files with 10 additions and 10 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AK/DeprecatedString.h>
|
||||
#include <AK/String.h>
|
||||
#include <LibCrypto/BigFraction/BigFraction.h>
|
||||
#include <LibCrypto/BigInt/UnsignedBigInteger.h>
|
||||
|
||||
|
@ -34,7 +34,7 @@ public:
|
|||
void set_rounding_length(unsigned);
|
||||
unsigned rounding_length() const;
|
||||
|
||||
DeprecatedString to_deprecated_string() const;
|
||||
ErrorOr<String> to_string() const;
|
||||
|
||||
bool in_typing_state() const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue