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
f8e617e8
Commit
f8e617e8
authored
Dec 02, 2020
by
Laurent Montel
😁
Browse files
Remove extra ;
parent
4216213d
Pipeline
#42725
canceled with stage
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
autotests/testkldap.cpp
View file @
f8e617e8
...
...
@@ -224,7 +224,7 @@ void KLdapTest::searchResult(KLDAP::LdapSearch *search)
void
KLdapTest
::
searchData
(
KLDAP
::
LdapSearch
*
search
,
const
KLDAP
::
LdapObject
&
obj
)
{
Q_UNUSED
(
search
)
;
Q_UNUSED
(
search
)
//qDebug();
//qDebug() << "Object:";
//qDebug() << obj.toString();
...
...
src/core/ber.cpp
View file @
f8e617e8
...
...
@@ -427,28 +427,28 @@ QByteArray Ber::flatten() const
int
Ber
::
printf
(
QString
format
,
...)
{
Q_UNUSED
(
format
)
;
Q_UNUSED
(
format
)
qCritical
()
<<
"LDAP support not compiled"
;
return
-
1
;
}
int
Ber
::
scanf
(
QString
format
,
...)
{
Q_UNUSED
(
format
)
;
Q_UNUSED
(
format
)
qCritical
()
<<
"LDAP support not compiled"
;
return
-
1
;
}
unsigned
int
Ber
::
peekTag
(
int
&
size
)
{
Q_UNUSED
(
size
)
;
Q_UNUSED
(
size
)
qCritical
()
<<
"LDAP support not compiled"
;
return
0
;
}
unsigned
int
Ber
::
skipTag
(
int
&
size
)
{
Q_UNUSED
(
size
)
;
Q_UNUSED
(
size
)
qCritical
()
<<
"LDAP support not compiled"
;
return
0
;
}
...
...
src/widgets/ldapconfigwidget.cpp
View file @
f8e617e8
...
...
@@ -426,7 +426,7 @@ void LdapConfigWidget::Private::loadData(LdapSearch *, const LdapObject &object)
void
LdapConfigWidget
::
Private
::
loadResult
(
LdapSearch
*
search
)
{
Q_UNUSED
(
search
)
;
Q_UNUSED
(
search
)
mCancelled
=
false
;
mProg
->
close
();
}
...
...
Write
Preview
Supports
Markdown
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