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
KSmtp
Commits
f50490f4
Commit
f50490f4
authored
Apr 13, 2022
by
Laurent Montel
😁
Browse files
Remove debug output
parent
94ea6585
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/sendjob.cpp
View file @
f50490f4
...
...
@@ -58,7 +58,6 @@ SendJob::SendJob(Session *session)
void
SendJob
::
setFrom
(
const
QString
&
from
)
{
Q_D
(
SendJob
);
qDebug
()
<<
"void SendJob::setFrom(const QString &from) "
<<
from
;
const
auto
start
=
from
.
indexOf
(
QLatin1Char
(
'<'
));
if
(
start
>
-
1
)
{
const
auto
end
=
qMax
(
start
,
from
.
indexOf
(
QLatin1Char
(
'>'
),
start
));
...
...
@@ -66,7 +65,6 @@ void SendJob::setFrom(const QString &from)
}
else
{
d
->
m_returnPath
=
QStringLiteral
(
"<%1>"
).
arg
(
from
);
}
qDebug
()
<<
"d->m_returnPath "
<<
d
->
m_returnPath
;
}
void
SendJob
::
setTo
(
const
QStringList
&
to
)
...
...
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