mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Splitted KeeShare into secure and insecure parts
KeeShare is now supported in a secure and insecure flavor (set CMake-Flags accordingly to allow or disallow the corresponding import and exports)
This commit is contained in:
parent
52dcc2855e
commit
d4c391deb2
18 changed files with 337 additions and 153 deletions
|
@ -26,7 +26,7 @@
|
|||
#include "core/FilePath.h"
|
||||
#include "entry/EntryAttachmentsModel.h"
|
||||
#include "gui/Clipboard.h"
|
||||
#ifdef WITH_XC_KEESHARE
|
||||
#if defined(WITH_XC_KEESHARE)
|
||||
#include "keeshare/KeeShare.h"
|
||||
#endif
|
||||
|
||||
|
@ -107,7 +107,7 @@ void EntryPreviewWidget::setGroup(Group* selectedGroup)
|
|||
updateGroupGeneralTab();
|
||||
updateGroupNotesTab();
|
||||
|
||||
#ifdef WITH_XC_KEESHARE
|
||||
#if defined(WITH_XC_KEESHARE)
|
||||
updateGroupSharingTab();
|
||||
#endif
|
||||
|
||||
|
@ -297,7 +297,7 @@ void EntryPreviewWidget::updateGroupNotesTab()
|
|||
m_ui->groupNotesEdit->setText(notes);
|
||||
}
|
||||
|
||||
#ifdef WITH_XC_KEESHARE
|
||||
#if defined(WITH_XC_KEESHARE)
|
||||
void EntryPreviewWidget::updateGroupSharingTab()
|
||||
{
|
||||
Q_ASSERT(m_currentGroup);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue