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
55a807f7
Commit
55a807f7
authored
Oct 08, 2021
by
Laurent Montel
😁
Browse files
Add signals
parent
9cc00e74
Pipeline
#86892
passed with stage
in 24 minutes and 47 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/historyswitchfoldermanager.cpp
View file @
55a807f7
...
...
@@ -27,3 +27,8 @@ void HistorySwitchFolderManager::clear()
{
mUndoStack
->
clear
();
}
void
HistorySwitchFolderManager
::
addCollection
(
const
Akonadi
::
Collection
&
col
)
{
// TODO
}
src/historyswitchfoldermanager.h
View file @
55a807f7
...
...
@@ -7,6 +7,10 @@
#include
<QObject>
class
QUndoStack
;
namespace
Akonadi
{
class
Collection
;
}
class
HistorySwitchFolderManager
:
public
QObject
{
Q_OBJECT
...
...
@@ -17,6 +21,10 @@ public:
void
clear
();
void
addHistory
();
void
addCollection
(
const
Akonadi
::
Collection
&
col
);
Q_SIGNALS:
void
switchToFolder
(
const
Akonadi
::
Collection
&
col
);
private:
QUndoStack
*
const
mUndoStack
;
};
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