mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Whitespace
This commit is contained in:
parent
47bdf22f1d
commit
d7661d708c
@ -32,9 +32,9 @@
|
||||
#include <QErrorMessage>
|
||||
#include <QUrl>
|
||||
|
||||
CAF_CMD_SOURCE_INIT(RicHelpAboutFeature, "RicHelpAboutFeature");
|
||||
CAF_CMD_SOURCE_INIT(RicHelpCommandLineFeature, "RicHelpCommandLineFeature");
|
||||
CAF_CMD_SOURCE_INIT(RicHelpOpenUsersGuideFeature, "RicHelpOpenUsersGuideFeature");
|
||||
CAF_CMD_SOURCE_INIT(RicHelpAboutFeature, "RicHelpAboutFeature");
|
||||
CAF_CMD_SOURCE_INIT(RicHelpCommandLineFeature, "RicHelpCommandLineFeature");
|
||||
CAF_CMD_SOURCE_INIT(RicHelpOpenUsersGuideFeature, "RicHelpOpenUsersGuideFeature");
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
@ -77,7 +77,7 @@ void RicHelpAboutFeature::onActionTriggered(bool isChecked)
|
||||
{
|
||||
dlg.addVersionEntry(" ", "Features");
|
||||
|
||||
for (auto feature : activeFeatures)
|
||||
for (const auto& feature : activeFeatures)
|
||||
{
|
||||
dlg.addVersionEntry(" ", feature);
|
||||
}
|
||||
@ -130,12 +130,6 @@ void RicHelpAboutFeature::setupActionLook(QAction* actionToSetup)
|
||||
actionToSetup->setText("&About");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@ -151,8 +145,8 @@ void RicHelpCommandLineFeature::onActionTriggered(bool isChecked)
|
||||
{
|
||||
this->disableModelChangeContribution();
|
||||
|
||||
RiaApplication* app = RiaApplication::instance();
|
||||
QString text = app->commandLineParameterHelp();
|
||||
RiaApplication* app = RiaApplication::instance();
|
||||
QString text = app->commandLineParameterHelp();
|
||||
app->showFormattedTextInMessageBox(text);
|
||||
}
|
||||
|
||||
@ -164,11 +158,6 @@ void RicHelpCommandLineFeature::setupActionLook(QAction* actionToSetup)
|
||||
actionToSetup->setText("&Command Line Help");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@ -201,5 +190,3 @@ void RicHelpOpenUsersGuideFeature::setupActionLook(QAction* actionToSetup)
|
||||
actionToSetup->setText("&Users Guide");
|
||||
actionToSetup->setShortcut(QKeySequence::HelpContents);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user