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
PIM
KLDAP
Commits
50177f4d
Commit
50177f4d
authored
Oct 25, 2021
by
Laurent Montel
😁
Browse files
GIT_SILENT: add missing override
parent
8edeb048
Pipeline
#91196
passed with stage
in 3 minutes and 41 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/core/ldapsearch.h
View file @
50177f4d
...
...
@@ -47,7 +47,7 @@ public:
*/
explicit
LdapSearch
(
LdapConnection
&
connection
);
~
LdapSearch
();
~
LdapSearch
()
override
;
/**
* Sets the connection for this object to use for searches from now
...
...
src/widgets/addhostdialog.h
View file @
50177f4d
...
...
@@ -25,7 +25,7 @@ class KLDAP_EXPORT AddHostDialog : public QDialog
public:
explicit
AddHostDialog
(
KLDAP
::
LdapServer
*
server
,
QWidget
*
parent
=
nullptr
);
~
AddHostDialog
();
~
AddHostDialog
()
override
;
Q_SIGNALS:
void
changed
(
bool
);
...
...
src/widgets/ldapclientsearchconfig.h
View file @
50177f4d
...
...
@@ -24,7 +24,7 @@ class KLDAP_EXPORT LdapClientSearchConfig : public QObject
Q_OBJECT
public:
explicit
LdapClientSearchConfig
(
QObject
*
parent
=
nullptr
);
~
LdapClientSearchConfig
();
~
LdapClientSearchConfig
()
override
;
/**
* Returns the global config object, which stores the LdapClient configurations.
...
...
src/widgets/ldapconfigurewidget.h
View file @
50177f4d
...
...
@@ -27,7 +27,7 @@ class KLDAP_EXPORT LdapConfigureWidget : public QWidget
Q_OBJECT
public:
explicit
LdapConfigureWidget
(
QWidget
*
parent
=
nullptr
);
~
LdapConfigureWidget
();
~
LdapConfigureWidget
()
override
;
void
load
();
void
save
();
...
...
src/widgets/ldapconfigwidget.h
View file @
50177f4d
...
...
@@ -81,7 +81,7 @@ public:
/** Constructs a configuration widget */
explicit
LdapConfigWidget
(
WinFlags
flags
,
QWidget
*
parent
=
nullptr
,
Qt
::
WindowFlags
fl
=
{});
/** Destructs a configuration widget */
~
LdapConfigWidget
();
~
LdapConfigWidget
()
override
;
/** Sets the user name. Kconfig widget name: kcfg_ldapuser
* @param user the user name to set
...
...
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