Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KDE Pim
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Unmaintained
KDE Pim
Commits
adee5935
Commit
adee5935
authored
Dec 10, 2014
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up
parent
85693646
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
kmail/kmmainwidget.cpp
kmail/kmmainwidget.cpp
+1
-1
kmail/secondarywindow.cpp
kmail/secondarywindow.cpp
+1
-1
No files found.
kmail/kmmainwidget.cpp
View file @
adee5935
...
...
@@ -420,7 +420,7 @@ void KMMainWidget::slotUpdateActionsAfterMailChecking()
GlobalSettings
::
self
()
->
sendOnCheck
()
==
GlobalSettings
::
EnumSendOnCheck
::
SendOnAllChecks
;
const
bool
sendOnManual
=
GlobalSettings
::
self
()
->
sendOnCheck
()
==
GlobalSettings
::
EnumSendOnCheck
::
SendOnManualChecks
;
if
(
!
kmkernel
->
isOffline
()
&&
(
sendOnAll
||
(
sendOnManual
/*&& sendOnCheck*/
)
)
)
{
if
(
!
kmkernel
->
isOffline
()
&&
(
sendOnAll
||
sendOnManual
)
)
{
slotSendQueued
();
}
// update folder menus in case some mail got filtered to trash/current folder
...
...
kmail/secondarywindow.cpp
View file @
adee5935
...
...
@@ -79,7 +79,7 @@ void SecondaryWindow::closeEvent( QCloseEvent * e )
void
SecondaryWindow
::
setCaption
(
const
QString
&
userCaption
)
{
QString
caption
=
KGlobal
::
caption
();
const
QString
caption
=
KGlobal
::
caption
();
QString
captionString
=
userCaption
.
isEmpty
()
?
caption
:
userCaption
;
if
(
!
userCaption
.
isEmpty
()
)
{
// Add the application name if:
...
...
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