mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
GRAPHICS: Const'ness
This commit is contained in:
parent
bc378c6999
commit
1b01ecc511
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user