diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-24 15:11:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-09-24 22:10:47 +0900 |
commit | 30de6cffc72712fb00117b748a1ae14c89f92e4c (patch) | |
tree | bc1bf5b2a57cc7ec5990c20429e9b70d51bac145 /kmail/configuredialog.cpp | |
parent | 94890b77a597743cd963422144f81df6d751a9c3 (diff) | |
download | tdepim-30de6cffc72712fb00117b748a1ae14c89f92e4c.tar.gz tdepim-30de6cffc72712fb00117b748a1ae14c89f92e4c.zip |
libemailfunctions: move kAscii* functions to tdelibs
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8e0a91b1a70d6a055a39838489a4dacfd3200740)
Diffstat (limited to 'kmail/configuredialog.cpp')
-rw-r--r-- | kmail/configuredialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmail/configuredialog.cpp b/kmail/configuredialog.cpp index c0beb0fd..2c5830ab 100644 --- a/kmail/configuredialog.cpp +++ b/kmail/configuredialog.cpp @@ -85,7 +85,6 @@ using KMime::DateFormatter; #include <tdelocale.h> #include <tdeapplication.h> #include <kcharsets.h> -#include <kasciistringtools.h> #include <kdebug.h> #include <knuminput.h> #include <tdefontdialog.h> @@ -117,6 +116,7 @@ using KMime::DateFormatter; #include <tqlayout.h> #include <tqcheckbox.h> #include <tqwidgetstack.h> +#include <tqglobal.h> // other headers: #include <assert.h> @@ -3327,7 +3327,7 @@ void ComposerPage::CharsetTab::doLoadOther() { it != charsets.end() ; ++it ) if ( (*it) == TQString::fromLatin1("locale") ) { TQCString cset = kmkernel->networkCodec()->mimeName(); - KPIM::kAsciiToLower( cset.data() ); + kasciitolower( cset.data() ); (*it) = TQString("%1 (locale)").arg( TQString(cset) ); } |