GRAPHICS: Const'ness

This commit is contained in:
Eugene Sandulenko 2020-04-27 14:42:08 +02:00
parent bc378c6999
commit 1b01ecc511
2 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ void RemoteBrowserDialog::goUp() {
listDirectory(Cloud::StorageFile(path, 0, 0, true)); listDirectory(Cloud::StorageFile(path, 0, 0, true));
} }
void RemoteBrowserDialog::listDirectory(Cloud::StorageFile node) { void RemoteBrowserDialog::listDirectory(const Cloud::StorageFile &node) {
if (_navigationLocked || _workingRequest) if (_navigationLocked || _workingRequest)
return; return;

View File

@ -64,7 +64,7 @@ protected:
void updateListing(); void updateListing();
void goUp(); void goUp();
void listDirectory(Cloud::StorageFile node); void listDirectory(const Cloud::StorageFile &node);
void directoryListedCallback(Cloud::Storage::ListDirectoryResponse response); void directoryListedCallback(Cloud::Storage::ListDirectoryResponse response);
void directoryListedErrorCallback(Networking::ErrorResponse error); void directoryListedErrorCallback(Networking::ErrorResponse error);