mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
acf6cc0527
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
10 lines
201 B
C++
10 lines
201 B
C++
#include "testhelper.h"
|
|
|
|
OCC::FolderDefinition folderDefinition(const QString &path)
|
|
{
|
|
OCC::FolderDefinition d;
|
|
d.localPath = path;
|
|
d.targetPath = path;
|
|
d.alias = path;
|
|
return d;
|
|
}
|