3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 06:44:18 +00:00
Brooklyn/plasma/workspace/klipper/utils.h
2022-04-02 18:24:21 +05:00

19 lines
332 B
C++

/*
SPDX-FileCopyrightText: 2022 Popov Eugene <popov895@ukr.net>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <QString>
class Utils
{
public:
/**
* Returns a simplified text of a maximum length of maxLength
*/
static QString simplifiedText(const QString &text, int maxLength);
};