mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Fixed a missing return type.
This commit is contained in:
parent
b6472ce1af
commit
28aa90444a
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ MirallWebDAV::MirallWebDAV(QObject *parent) :
|
|||
|
||||
}
|
||||
|
||||
bool MirallWebDAV::httpConnect( const QString& str, const QString& user, const QString& passwd)
|
||||
void MirallWebDAV::httpConnect( const QString& str, const QString& user, const QString& passwd)
|
||||
{
|
||||
_host = str;
|
||||
if( !_host.endsWith( "webdav.php")) {
|
||||
|
|
|
@ -24,7 +24,7 @@ class MirallWebDAV : public QObject
|
|||
public:
|
||||
explicit MirallWebDAV(QObject *parent = 0);
|
||||
|
||||
bool httpConnect( const QString& url, const QString&, const QString& );
|
||||
void httpConnect( const QString& url, const QString&, const QString& );
|
||||
|
||||
bool mkdir( const QString& dir );
|
||||
|
||||
|
|
Loading…
Reference in a new issue