mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-14 07:42:46 +01:00
acf6cc0527
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
11 lines
201 B
C++
11 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;
|
|
}
|