Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Goetz <markus@woboq.com>2014-03-22 12:41:32 +0400
committerMarkus Goetz <markus@woboq.com>2014-03-22 12:41:32 +0400
commit91f416ffc7326ad1c34d6a575e15ca08c5d3b6ee (patch)
tree0e8f2e54d7017cbe5ad56a7f689d83808d49e7e5 /src/owncloudcmd
parent28559ab657e124b54165636e56530919ce1d8c05 (diff)
Fix compile after changing Account::davPath()
Diffstat (limited to 'src/owncloudcmd')
-rw-r--r--src/owncloudcmd/owncloudcmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/owncloudcmd/owncloudcmd.cpp b/src/owncloudcmd/owncloudcmd.cpp
index a38ebf809..31ad39e3f 100644
--- a/src/owncloudcmd/owncloudcmd.cpp
+++ b/src/owncloudcmd/owncloudcmd.cpp
@@ -138,7 +138,7 @@ int main(int argc, char **argv) {
Account account;
// Find the folder and the original owncloud url
- QStringList splitted = url.path().split(Account::davPath());
+ QStringList splitted = url.path().split(account.davPath());
url.setPath(splitted.value(0));
url.setScheme(url.scheme().replace("owncloud", "http"));
QString folder = splitted.value(1);