瀏覽代碼

Fixed wrong variable names

Luka 9 年之前
父節點
當前提交
d3332a574e
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      methods.py

+ 2 - 2
methods.py

@@ -1287,10 +1287,10 @@ def android_add_java_dir(self,subpath):
 def android_add_res_dir(self,subpath):
 def android_add_res_dir(self,subpath):
 	base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
 	base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
 	self.android_res_dirs.append(base_path)
 	self.android_res_dirs.append(base_path)
-def android_add_aidl_dir(self,file):
+def android_add_aidl_dir(self,subpath):
 	base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
 	base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
 	self.android_aidl_dirs.append(base_path)
 	self.android_aidl_dirs.append(base_path)
-def android_add_jni_dir(self,file):
+def android_add_jni_dir(self,subpath):
 	base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
 	base_path = self.Dir(".").abspath+"/modules/"+self.current_module+"/"+subpath
 	self.android_jni_dirs.append(base_path)
 	self.android_jni_dirs.append(base_path)