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
96e28cd6
Commit
96e28cd6
authored
Nov 15, 2021
by
Laurent Montel
😁
Browse files
Add manager
parent
e3d0f6eb
Pipeline
#97747
canceled with stage
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/CMakeLists.txt
View file @
96e28cd6
...
...
@@ -307,6 +307,8 @@ target_sources(kmailprivate PRIVATE
historyswitchfolder/historyswitchfoldermanager.h
historyswitchfolder/collectionswitchertreeview.cpp
historyswitchfolder/collectionswitchertreeview.h
historyswitchfolder/collectionswitchertreeviewmanager.h
historyswitchfolder/collectionswitchertreeviewmanager.cpp
)
qt_add_dbus_adaptor
(
kmailprivate_LIB_SRCS
...
...
src/historyswitchfolder/collectionswitchertreeviewmanager.cpp
0 → 100644
View file @
96e28cd6
/*
This file is part of KMail, the KDE mail client.
SPDX-FileCopyrightText: 2021 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-only
*/
#include
"collectionswitchertreeviewmanager.h"
CollectionSwitcherTreeViewManager
::
CollectionSwitcherTreeViewManager
(
QObject
*
parent
)
:
QObject
{
parent
}
{
}
CollectionSwitcherTreeViewManager
::~
CollectionSwitcherTreeViewManager
()
{
}
src/historyswitchfolder/collectionswitchertreeviewmanager.h
0 → 100644
View file @
96e28cd6
/*
This file is part of KMail, the KDE mail client.
SPDX-FileCopyrightText: 2021 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-only
*/
#pragma once
#include
<QObject>
class
CollectionSwitcherTreeViewManager
:
public
QObject
{
Q_OBJECT
public:
explicit
CollectionSwitcherTreeViewManager
(
QObject
*
parent
=
nullptr
);
~
CollectionSwitcherTreeViewManager
()
override
;
};
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