diff options
author | George Hazan <george.hazan@gmail.com> | 2024-02-26 12:00:20 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-02-26 12:00:24 +0300 |
commit | 84f26abba25b68ca38f829abe44716f8f663939a (patch) | |
tree | 12fdf360c9af80f1b4d8bf7917ba5799c89fcff3 /plugins/TabSRMM/src/container.cpp | |
parent | b3bcb31b9d7677c5c776414a9c2c9267f603c141 (diff) |
fixes #4228 (tabSRMM: add ability to hide a warning about unsent messages in the queue)
Diffstat (limited to 'plugins/TabSRMM/src/container.cpp')
-rw-r--r-- | plugins/TabSRMM/src/container.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/container.cpp b/plugins/TabSRMM/src/container.cpp index e528413cb6..fd8e52cf53 100644 --- a/plugins/TabSRMM/src/container.cpp +++ b/plugins/TabSRMM/src/container.cpp @@ -2134,7 +2134,7 @@ panel_found: return TRUE;
pContainer->m_exFlags |= CNT_EX_CLOSEWARN;
- LRESULT result = SendQueue::WarnPendingJobs(iOpenJobs);
+ LRESULT result = SendQueue::WarnPendingJobs();
pContainer->m_exFlags &= ~CNT_EX_CLOSEWARN;
if (result == IDNO)
return TRUE;
|