From b9d26494b65cf261aa5da829c8ae94c467b02038 Mon Sep 17 00:00:00 2001 From: "royqh1979@gmail.com" Date: Tue, 21 Sep 2021 20:41:17 +0800 Subject: [PATCH] work save --- RedPandaIDE/settings.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/RedPandaIDE/settings.cpp b/RedPandaIDE/settings.cpp index af785d2e..9b961414 100644 --- a/RedPandaIDE/settings.cpp +++ b/RedPandaIDE/settings.cpp @@ -470,62 +470,62 @@ void Settings::Editor::setRainbowParenthesis(bool newRainbowParenthesis) mRainbowParenthesis = newRainbowParenthesis; } -bool Editor::showFunctionTips() const +bool Settings::Editor::showFunctionTips() const { return mShowFunctionTips; } -void Editor::setShowFunctionTips(bool newShowFunctionTips) +void Settings::Editor::setShowFunctionTips(bool newShowFunctionTips) { mShowFunctionTips = newShowFunctionTips; } -bool Editor::enableTooltips() const +bool Settings::Editor::enableTooltips() const { return mEnableTooltips; } -void Editor::setEnableTooltips(bool newEnableTooltips) +void Settings::Editor::setEnableTooltips(bool newEnableTooltips) { mEnableTooltips = newEnableTooltips; } -bool Editor::enableDebugTooltips() const +bool Settings::Editor::enableDebugTooltips() const { return mEnableDebugTooltips; } -void Editor::setEnableDebugTooltips(bool newEnableDebugTooltips) +void Settings::Editor::setEnableDebugTooltips(bool newEnableDebugTooltips) { mEnableDebugTooltips = newEnableDebugTooltips; } -bool Editor::enableIdentifierToolTips() const +bool Settings::Editor::enableIdentifierToolTips() const { return mEnableIdentifierToolTips; } -void Editor::setEnableIdentifierToolTips(bool newEnableIdentifierToolTips) +void Settings::Editor::setEnableIdentifierToolTips(bool newEnableIdentifierToolTips) { mEnableIdentifierToolTips = newEnableIdentifierToolTips; } -bool Editor::enableHeaderToolTips() const +bool Settings::Editor::enableHeaderToolTips() const { return mEnableHeaderToolTips; } -void Editor::setEnableHeaderToolTips(bool newEnableHeaderToolTips) +void Settings::Editor::setEnableHeaderToolTips(bool newEnableHeaderToolTips) { mEnableHeaderToolTips = newEnableHeaderToolTips; } -bool Editor::enableIssueToolTips() const +bool Settings::Editor::enableIssueToolTips() const { return mEnableIssueToolTips; } -void Editor::setEnableIssueToolTips(bool newEnableIssueToolTips) +void Settings::Editor::setEnableIssueToolTips(bool newEnableIssueToolTips) { mEnableIssueToolTips = newEnableIssueToolTips; }