1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2024-10-17 07:42:46 +02:00
Nextcloud-Desktop/test/testhelper.cpp
Felix Weilbach acf6cc0527 Remove unused functions and variables
Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
2021-08-11 20:20:39 +00:00

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;
}