File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public interface _Manage {
1919 Dictionary Location ( ) ;
2020
2121 [ DispId ( 56 ) , Description ( "Get the current geo location." ) ]
22- void SetLocation ( int latitude , int longitude , int altitude ) ;
22+ void SetLocation ( double latitude , double longitude , double altitude ) ;
2323
2424 [ DispId ( 69 ) , Description ( "Collection of cookies for the current page" ) ]
2525 Cookies Cookies { get ; }
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ public Dictionary Location() {
9292 /// <summary>
9393 /// Set the current geo location.
9494 /// </summary>
95- public void SetLocation ( int latitude , int longitude , int altitude ) {
95+ public void SetLocation ( double latitude , double longitude , double altitude ) {
9696 Dictionary location = new Dictionary ( ) ;
9797 location . Add ( "latitude" , latitude ) ;
9898 location . Add ( "longitude" , longitude ) ;
You can’t perform that action at this time.
0 commit comments