File indexing completed on 2025-01-12 03:40:51

0001 /* This file is part of the dbusmenu-qt library
0002    SPDX-FileCopyrightText: 2010 Canonical
0003    Author: Aurelien Gateau <aurelien.gateau@canonical.com>
0004 
0005    SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 #ifndef UTILS_P_H
0008 #define UTILS_P_H
0009 
0010 class QString;
0011 class QChar;
0012 
0013 /**
0014  * Swap mnemonic char: Qt uses '&', while dbusmenu uses '_'
0015  */
0016 QString swapMnemonicChar(const QString &in, const QChar &src, const QChar &dst);
0017 
0018 #endif /* UTILS_P_H */