Browse Source

rtl: clean up

mattias 6 years ago
parent
commit
66ab817361
1 changed files with 4 additions and 5 deletions
  1. 4 5
      packages/rtl/webbluetooth.pas

+ 4 - 5
packages/rtl/webbluetooth.pas

@@ -137,8 +137,7 @@ Type
   Private
     FreferringDevice : TJSBluetoothDevice; external name 'referringDevice'; 
   Public
-    
-      onavailabilitychanged : TJSEventHandler;
+    onavailabilitychanged : TJSEventHandler;
     function getAvailability: TJSPromise;
     function requestDevice(options : TJSRequestDeviceOptions): TJSPromise; overload;
     function requestDevice: TJSPromise; overload;
@@ -153,7 +152,7 @@ Type
   TJSBluetoothPermissionResult = class external name 'BluetoothPermissionResult'  (TJSOBject)
   Private
   Public
-      devices : TTJSBluetoothDeviceDynArray;
+    devices : TTJSBluetoothDeviceDynArray;
   end;
   
   { --------------------------------------------------------------------
@@ -388,9 +387,9 @@ Type
   
   TJSNavigator = class external name 'Navigator' 
   Private
-    Fbluetooth : TJSBluetooth; external name 'bluetooth'; 
+    Fbluetooth : TJSBluetooth; external name 'bluetooth';
   Public
-    Property bluetooth : TJSBluetooth Read Fbluetooth; 
+    Property bluetooth : TJSBluetooth Read Fbluetooth;
   end;
 
 implementation