From 6e19ab2bbce0b113b628e6f8e9b5c0640053933e Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sun, 4 Dec 2022 18:02:33 +0000 Subject: AK+Everywhere: Rename String to DeprecatedString We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^) --- Userland/Libraries/LibIMAP/Client.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Userland/Libraries/LibIMAP/Client.h') diff --git a/Userland/Libraries/LibIMAP/Client.h b/Userland/Libraries/LibIMAP/Client.h index 2e4096ad56..d252272598 100644 --- a/Userland/Libraries/LibIMAP/Client.h +++ b/Userland/Libraries/LibIMAP/Client.h @@ -39,9 +39,9 @@ public: RefPtr>> lsub(StringView reference_name, StringView mailbox_name); RefPtr>> select(StringView string); RefPtr>> examine(StringView string); - RefPtr>> search(Optional charset, Vector&& search_keys, bool uid); + RefPtr>> search(Optional charset, Vector&& search_keys, bool uid); RefPtr>> fetch(FetchCommand request, bool uid); - RefPtr>> store(StoreMethod, Sequence, bool silent, Vector const& flags, bool uid); + RefPtr>> store(StoreMethod, Sequence, bool silent, Vector const& flags, bool uid); RefPtr>> copy(Sequence sequence_set, StringView name, bool uid); RefPtr>> create_mailbox(StringView name); RefPtr>> delete_mailbox(StringView name); @@ -52,7 +52,7 @@ public: RefPtr>> idle(); RefPtr>> finish_idle(); RefPtr>> status(StringView mailbox, Vector const& types); - RefPtr>> append(StringView mailbox, Message&& message, Optional> flags = {}, Optional date_time = {}); + RefPtr>> append(StringView mailbox, Message&& message, Optional> flags = {}, Optional date_time = {}); bool is_open(); void close(); -- cgit v1.2.3