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

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

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