소스 검색

* Fix bug ID #37824

git-svn-id: trunk@46985 -
michael 5 년 전
부모
커밋
7c238c24e8
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      packages/googleapi/src/googledrive.pp

+ 2 - 0
packages/googleapi/src/googledrive.pp

@@ -1213,6 +1213,7 @@ type
     pageToken : String;
     q : String;
     spaces : String;
+    fields: String;
   end;
   
   
@@ -4120,6 +4121,7 @@ begin
   AddToQuery(_Q,'pageToken',AQuery.pageToken);
   AddToQuery(_Q,'q',AQuery.q);
   AddToQuery(_Q,'spaces',AQuery.spaces);
+  AddToQuery(_Q,'fields',AQuery.fields);
   Result:=List(_Q);
 end;