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
KDE PIM Add-ons
Commits
f7949d96
Commit
f7949d96
authored
Jul 28, 2020
by
Laurent Montel
😁
Browse files
Allow to save settings
parent
628b4441
Pipeline
#28632
failed with stage
in 75 minutes and 43 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
plugins/messageviewerconfigureplugins/foldersettings/folderconfiguresettingsdialog.cpp
View file @
f7949d96
...
...
@@ -67,4 +67,6 @@ void FolderConfigureSettingsDialog::writeConfig()
KConfigGroup
grp
(
KSharedConfig
::
openConfig
(),
myConfigGroupName
);
grp
.
writeEntry
(
"Size"
,
size
());
grp
.
sync
();
#if 0
#endif
}
plugins/messageviewerconfigureplugins/foldersettings/folderconfiguresettingswidget.cpp
View file @
f7949d96
...
...
@@ -56,5 +56,13 @@ FolderConfigureSettingsWidget::~FolderConfigureSettingsWidget()
void
FolderConfigureSettingsWidget
::
save
()
{
#if 0
const auto indexes = checkable->selectionModel()->selectedIndexes();
QSet<qint64> list;
list.reserve(indexes.count());
for (const auto &index : indexes) {
list << index.data(Akonadi::EntityTreeModel::CollectionIdRole).toLongLong();
}
#endif
//TODO
}
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