Refactoring.

This commit is contained in:
Roman Telezhynskyi 2023-06-23 09:12:36 +03:00
parent d70c447786
commit 640f9342cf
2 changed files with 2 additions and 2 deletions

View file

@ -375,7 +375,7 @@ auto AbstractTest::TapePath() const -> QString
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
auto AbstractTest::TranslationsPath() const -> QString auto AbstractTest::TranslationsPath() -> QString
{ {
#ifdef QBS_BUILD #ifdef QBS_BUILD
return QStringLiteral(TRANSLATIONS_DIR); return QStringLiteral(TRANSLATIONS_DIR);

View file

@ -99,7 +99,7 @@ protected:
auto PuzzlePath() const -> QString; auto PuzzlePath() const -> QString;
auto ValentinaPath() const -> QString; auto ValentinaPath() const -> QString;
auto TapePath() const -> QString; auto TapePath() const -> QString;
auto TranslationsPath() const -> QString; static auto TranslationsPath() -> QString;
static auto RunTimeout(int defMsecs) -> int; static auto RunTimeout(int defMsecs) -> int;