mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 14:03:17 +02:00
didn't mean to do that
This commit is contained in:
parent
b3513b543c
commit
79864df08e
1 changed files with 2 additions and 2 deletions
|
@ -71,8 +71,8 @@ void setupPreferences() {
|
|||
// Snapshots
|
||||
static const QString SNAPSHOTS { "Snapshots" };
|
||||
{
|
||||
auto getter = [=]()->QString { return Snapshot::snapshotsLocation.get(); };
|
||||
auto setter = [=](const QString& value) { Snapshot::snapshotsLocation.set(value); };
|
||||
auto getter = []()->QString { return Snapshot::snapshotsLocation.get(); };
|
||||
auto setter = [](const QString& value) { Snapshot::snapshotsLocation.set(value); };
|
||||
auto preference = new BrowsePreference(SNAPSHOTS, "Put my snapshots here", getter, setter);
|
||||
preferences->addPreference(preference);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue