Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
d66b3afd
Commit
d66b3afd
authored
Mar 03, 2022
by
Kurt Hindenburg
Browse files
Add explicit to constructors with 1 argument
parent
e3d178f1
Pipeline
#144901
passed with stage
in 2 minutes and 5 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/QuickCommands/quickcommandsmodel.h
View file @
d66b3afd
...
...
@@ -14,7 +14,7 @@ class QuickCommandsModel : public QStandardItemModel
Q_OBJECT
public:
enum
Roles
{
QuickCommandRole
=
Qt
::
UserRole
+
1
};
QuickCommandsModel
(
QObject
*
parent
=
nullptr
);
explicit
QuickCommandsModel
(
QObject
*
parent
=
nullptr
);
~
QuickCommandsModel
()
override
;
QStringList
groups
()
const
;
...
...
src/plugins/QuickCommands/quickcommandswidget.h
View file @
d66b3afd
...
...
@@ -22,7 +22,7 @@ class QuickCommandsWidget : public QWidget
{
Q_OBJECT
public:
QuickCommandsWidget
(
QWidget
*
parent
=
nullptr
);
explicit
QuickCommandsWidget
(
QWidget
*
parent
=
nullptr
);
~
QuickCommandsWidget
()
override
;
Q_SLOT
void
viewMode
();
...
...
src/plugins/SSHManager/sshmanagermodel.h
View file @
d66b3afd
...
...
@@ -31,7 +31,7 @@ public:
SSHRole
=
Qt
::
UserRole
+
1
,
};
SSHManagerModel
(
QObject
*
parent
=
nullptr
);
explicit
SSHManagerModel
(
QObject
*
parent
=
nullptr
);
~
SSHManagerModel
()
override
;
void
setSessionController
(
Konsole
::
SessionController
*
controller
);
...
...
src/plugins/SSHManager/sshmanagerpluginwidget.h
View file @
d66b3afd
...
...
@@ -28,7 +28,7 @@ class SSHManagerTreeWidget : public QWidget
{
Q_OBJECT
public:
SSHManagerTreeWidget
(
QWidget
*
parent
=
nullptr
);
explicit
SSHManagerTreeWidget
(
QWidget
*
parent
=
nullptr
);
~
SSHManagerTreeWidget
()
override
;
// shows the panel for add a new ssh info.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment