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
KMail
Commits
bb9efa7f
Commit
bb9efa7f
authored
Oct 18, 2021
by
Laurent Montel
😁
Browse files
GIT_SILENT: improve debug
parent
6bdd54c5
Pipeline
#89516
passed with stage
in 25 minutes and 17 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/historyswitchfoldermanager.cpp
View file @
bb9efa7f
...
...
@@ -42,7 +42,7 @@ void HistorySwitchFolderManager::changeCollection(const Akonadi::Collection &cur
void
HistorySwitchFolderManager
::
undo
()
{
qDebug
()
<<
" void HistorySwitchFolderManager::undo()"
;
qDebug
()
<<
" void HistorySwitchFolderManager::undo()"
<<
mUndoStack
->
canUndo
()
;
if
(
mUndoStack
->
canUndo
())
{
mUndoStack
->
undo
();
}
...
...
@@ -50,7 +50,7 @@ void HistorySwitchFolderManager::undo()
void
HistorySwitchFolderManager
::
redo
()
{
qDebug
()
<<
" void HistorySwitchFolderManager::redo()"
;
qDebug
()
<<
" void HistorySwitchFolderManager::redo()"
<<
mUndoStack
->
canRedo
()
;
if
(
mUndoStack
->
canRedo
())
{
mUndoStack
->
redo
();
}
...
...
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