Browse Source

* Applied patch from stephano, bug ID #26143.

git-svn-id: trunk@27776 -
michael 11 years ago
parent
commit
490a8f9421
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/fcl-process/src/wince/simpleipc.inc

+ 2 - 2
packages/fcl-process/src/wince/simpleipc.inc

@@ -198,7 +198,7 @@ end;
 Type
   TWinMsgClientComm = Class(TIPCClientComm)
   Private
-    FWindowName: String;
+    FWindowName: WideString;
     FHWND : HWnd;
   Public
     Constructor Create(AOWner : TSimpleIPCClient); override;
@@ -206,7 +206,7 @@ Type
     Procedure Disconnect; override;
     Procedure SendMessage(MsgType : TMessageType; Stream : TStream); override;
     Function  ServerRunning : Boolean; override;
-    Property WindowName : String Read FWindowName;
+    Property WindowName : WideString Read FWindowName;
   end;