diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2017-12-13 20:10:04 +0100 |
---|---|---|
committer | Jan Mulder <jlmulder@xs4all.nl> | 2017-12-14 17:01:05 +0100 |
commit | 074ddc05962e643b129cacbe81a20640cfd8fe19 (patch) | |
tree | 67dd274b4f2c8dc0724ca3a99281c9e16cc86a8a /core/qthelperfromc.h | |
parent | 375490dfc9dddb01be8a4f484437580e679a0047 (diff) | |
download | subsurface-074ddc05962e643b129cacbe81a20640cfd8fe19.tar.gz |
Remove function isCloudUrl()
The function isCloudUrl() was only called in one place, parse_file().
But, isCloudUrl() could only return true if the filename was of the
git-repository kind (url[branch]). In such a case, control flow would
never reach the point where isCloudUrl() is called, since
is_git_repository() returns non-NULL and the function returns early.
Therefore, remove this function. Moreover, adapt the affected if-statement
by replacing "str && !strcmp(str, ...)" with the more concise
"same_string(str, ...)".
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/qthelperfromc.h')
-rw-r--r-- | core/qthelperfromc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/qthelperfromc.h b/core/qthelperfromc.h index fb308c5dd..631596110 100644 --- a/core/qthelperfromc.h +++ b/core/qthelperfromc.h @@ -5,7 +5,6 @@ bool getProxyString(char **buffer); bool canReachCloudServer(); void updateWindowTitle(); -bool isCloudUrl(const char *filename); void subsurface_mkdir(const char *dir); char *get_file_name(const char *fileName); void copy_image_and_overwrite(const char *cfileName, const char *path, const char *cnewName); |