Fix typo 98/265298/2
authorjusung <jusung07.son@samsung.com>
Thu, 14 Oct 2021 08:17:16 +0000 (17:17 +0900)
committerjusung <jusung07.son@samsung.com>
Thu, 14 Oct 2021 08:19:06 +0000 (17:19 +0900)
Change-Id: I1814872e83824cb7c336dc9fea273ffc894861ba
Signed-off-by: jusung <jusung07.son@samsung.com>
idlc/gen_cion/cs_cion_stub_gen_cb.h

index 3d5e5c9ff9b2511444acf5ce5ff951e76531a0df..0bee020055b18603508e63d1051583b369cd21ea 100644 (file)
@@ -96,7 +96,7 @@ R"__cs_cb(
                 /// <summary>
                 /// This method will be called when connection requested from the client
                 /// </summary>
-                public abstract void OnConnentionRequest();
+                public abstract void OnConnectionRequest();
 
                 /// <summary>
                 /// This method will be called when received file payload.
@@ -245,14 +245,14 @@ R"__cs_cb(
 
 const char CB_ON_CONNECTIONREQUESTED_EVENT[] =
 R"__cs_cb(
-            protected override void OnConnentionRequest(PeerInfo peerInfo)
+            protected override void OnConnectionRequest(PeerInfo peerInfo)
             {
                 ServiceBase s = Activator.CreateInstance(_serviceType) as ServiceBase;
                 s.ServiceName = base.ServiceName;
                 s.DisplayName = base.DisplayName;
                 s.ConnectionRequestClient = peerInfo;
                 s.ServerBase = this;
-                s.OnConnentionRequest();
+                s.OnConnectionRequest();
                 _services.Add(s);
             }
 )__cs_cb";