Skip to content

Commit

Permalink
Init bool, int in contructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
niknah committed Sep 29, 2023
1 parent 02dc2e6 commit b307a3d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion plugin-customcommand/lxqtcustomcommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ LXQtCustomCommand::LXQtCustomCommand(const ILXQtPanelPluginStartupInfo &startupI
mDelayedRunTimer(new QTimer(this)),
mFirstRun(true),
mOutput(QString()),
mAutoRotate(true)
mAutoRotate(true),
mRunWithBash(true),
mOutputImage(false),
mRepeat(true),
mRepeatTimer(1),
mMaxWidth(200)
{
mButton = new CustomButton(this);
mButton->setObjectName(QLatin1String("CustomButton"));
Expand Down

0 comments on commit b307a3d

Please sign in to comment.