mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 15:51:42 +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));
|
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;
|
||||||
|
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user