From 944798825d8b84cb78ad16d40b9848f514ed4661 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 8 Oct 2023 13:20:16 -0400 Subject: [PATCH] Remove extraneous argumentsEncrypted definition in profile --- launcher/src/profile.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/launcher/src/profile.cpp b/launcher/src/profile.cpp index 73d3e82..0138699 100644 --- a/launcher/src/profile.cpp +++ b/launcher/src/profile.cpp @@ -379,20 +379,6 @@ void Profile::setDalamudInjectDelay(const int value) } } -bool Profile::argumentsEncrypted() const -{ - return m_config->encryptArguments(); -} - -void Profile::setArgumentsEncrypted(const bool value) -{ - if (m_config->encryptArguments() != value) { - m_config->setEncryptArguments(value); - m_config->save(); - Q_EMIT encryptedArgumentsChanged(); - } -} - Account *Profile::account() const { return m_account;