diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2015-03-23 14:15:11 -0300 | 
|---|---|---|
| committer | Juan Linietsky <reduzio@gmail.com> | 2015-03-23 14:15:11 -0300 | 
| commit | 8db3922f56dd08e8fa2fed76cbebc1ca5fd79c8f (patch) | |
| tree | cafe1fc1bef1900bc912280f85438eabd5919c7d | |
| parent | 92905075d377a494dfddc39e41bd2d99043cf154 (diff) | |
small android fix
| -rw-r--r-- | platform/android/dir_access_jandroid.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/dir_access_jandroid.cpp b/platform/android/dir_access_jandroid.cpp index 97c5bfed61..d74f9c7ad2 100644 --- a/platform/android/dir_access_jandroid.cpp +++ b/platform/android/dir_access_jandroid.cpp @@ -111,7 +111,7 @@ bool DirAccessJAndroid::current_is_hidden() const {  	return current!="." && current!=".." && current.begins_with(".");  } -bool DirAccessAndroid::current_is_hidden() const{ +bool DirAccessJAndroid::current_is_hidden() const{  	return current!="." && current!=".." && current.begins_with(".");  }  void DirAccessJAndroid::list_dir_end(){  |