File indexing completed on 2025-02-09 06:35:13
0001 /* 0002 SPDX-FileCopyrightText: 2012-2020 Harald Sitter <sitter@kde.org> 0003 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0004 */ 0005 0006 #ifndef FANCYSTRING_H 0007 #define FANCYSTRING_H 0008 0009 #include <QString> 0010 0011 namespace FancyString 0012 { 0013 // Turns ugly '(R)' '(TM)' ascii into unicode. 0014 QString fromUgly(const QString &string); 0015 } 0016 0017 #endif // FANCYSTRING_H