Skip to content

Commit

Permalink
Make Clang-Tidy happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Oct 25, 2019
1 parent 6595a1b commit 67469cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/plugins/sample/SampleTools/src/sampletoolsplugin.h
Expand Up @@ -62,7 +62,7 @@ class SampleToolsPlugin : public QObject, public CliInterface,
#include "plugininterface.inl"

private:
QAction *mAddTwoNumbersAction;
QAction *mAddTwoNumbersAction = nullptr;

void runHelpCommand();
bool runAddCommand(const QStringList &pArguments);
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/sample/SampleWindow/src/samplewindowplugin.h
Expand Up @@ -62,9 +62,9 @@ class SampleWindowPlugin : public QObject, public I18nInterface,
#include "windowinterface.inl"

private:
QAction *mSampleWindowAction;
QAction *mSampleWindowAction = nullptr;

SampleWindowWindow *mSampleWindowWindow;
SampleWindowWindow *mSampleWindowWindow = nullptr;
};

//==============================================================================
Expand Down

0 comments on commit 67469cc

Please sign in to comment.