summaryrefslogtreecommitdiff
path: root/TAO/examples/Borland/ChatClientWnd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Borland/ChatClientWnd.cpp')
-rw-r--r--TAO/examples/Borland/ChatClientWnd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/examples/Borland/ChatClientWnd.cpp b/TAO/examples/Borland/ChatClientWnd.cpp
index 8d8bf2f6052..1917fb6dbd6 100644
--- a/TAO/examples/Borland/ChatClientWnd.cpp
+++ b/TAO/examples/Borland/ChatClientWnd.cpp
@@ -61,7 +61,7 @@ __fastcall TChatClientWindow::TChatClientWindow (TComponent* Owner)
catch (CORBA::Exception &e)
{
ShowMessage ("CORBA Exception in TChatClientWindow constructor: "
- + String (e._id ()));
+ + String (e._rep_id ()));
throw;
}
}
@@ -94,7 +94,7 @@ void __fastcall TChatClientWindow::FormClose (TObject *Sender,
}
catch (CORBA::Exception &e)
{
- ShowMessage ("CORBA Exception in FormClose: " + String (e._id ()));
+ ShowMessage ("CORBA Exception in FormClose: " + String (e._rep_id ()));
}
}
//---------------------------------------------------------------------------
@@ -110,7 +110,7 @@ void __fastcall TChatClientWindow::InputMemoKeyPress (TObject *Sender, char &Key
}
catch (CORBA::Exception &e)
{
- ShowMessage ("CORBA Exception in InputMemoKeyPress: " + String (e._id ()));
+ ShowMessage ("CORBA Exception in InputMemoKeyPress: " + String (e._rep_id ()));
}
Key = 0;