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
af839c1d
Commit
af839c1d
authored
Oct 06, 2021
by
Laurent Montel
😁
Browse files
Start to implement history switch folder. So it will more easy to switch
back
parent
48fea25a
Pipeline
#85860
canceled with stage
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
af839c1d
...
...
@@ -170,6 +170,7 @@ target_sources(kmailprivate PRIVATE
manageshowcollectionproperties.cpp
kmmigrateapplication.cpp
kmail.qrc
historyswitchfoldermanager.cpp
)
qt_add_dbus_adaptor
(
kmailprivate_LIB_SRCS
...
...
src/historyswitchfoldermanager.cpp
0 → 100644
View file @
af839c1d
/*
SPDX-FileCopyrightText: 2021 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "historyswitchfoldermanager.h"
HistorySwitchFolderManager
::
HistorySwitchFolderManager
(
QObject
*
parent
)
:
QObject
{
parent
}
{
}
HistorySwitchFolderManager
::~
HistorySwitchFolderManager
()
{
}
src/historyswitchfoldermanager.h
0 → 100644
View file @
af839c1d
/*
SPDX-FileCopyrightText: 2021 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <QObject>
class
HistorySwitchFolderManager
:
public
QObject
{
Q_OBJECT
public:
explicit
HistorySwitchFolderManager
(
QObject
*
parent
=
nullptr
);
~
HistorySwitchFolderManager
()
override
;
// Add static method
};
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