summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-09-06 12:37:28 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-09-06 12:37:28 +0000
commit2f8c174ed0f864dfee2f7dac7f97803f2faac92a (patch)
treefe593dbbd1e118b8ba52ecf3b8e9921ea1ab5053
parentfe244024812fbeffddbe266250a43a5dd2475d74 (diff)
downloadATCD-2f8c174ed0f864dfee2f7dac7f97803f2faac92a.tar.gz
Thu Sep 6 12:37:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/ChangeLog12
-rw-r--r--TAO/examples/Borland/ChatClientWnd.cpp4
-rw-r--r--TAO/examples/Simple/fullname/README3
-rw-r--r--TAO/examples/Simple/squareit/README2
4 files changed, 14 insertions, 7 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index ba21b00f8d5..79158beb654 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,15 @@
+Thu Sep 6 12:37:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * examples/Borland/ChatClientWnd.cpp:
+ Catch exceptions as const
+
+ * examples/Simple/fullname:
+ * examples/Simple/fullname/README:
+ * examples/Simple/squareit:
+ * examples/Simple/squareit/README:
+ Removed, these examples where never implemented. Thanks to Douglas
+ Schmidt for pointing this out
+
Thu Sep 6 10:32:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO-INSTALL.html:
diff --git a/TAO/examples/Borland/ChatClientWnd.cpp b/TAO/examples/Borland/ChatClientWnd.cpp
index df9e4ed6858..d5749ce8a77 100644
--- a/TAO/examples/Borland/ChatClientWnd.cpp
+++ b/TAO/examples/Borland/ChatClientWnd.cpp
@@ -90,7 +90,7 @@ void __fastcall TChatClientWindow::FormClose (TObject *,
server_->remove (receiver_var_);
receiver_i_.shutdown ();
}
- catch (CORBA::Exception &e)
+ catch (const CORBA::Exception &e)
{
ShowMessage ("CORBA Exception in FormClose: " + String (e._rep_id ()));
}
@@ -106,7 +106,7 @@ void __fastcall TChatClientWindow::InputMemoKeyPress (TObject *, char &Key)
// the server.
server_->say (receiver_var_, InputMemo->Text.c_str ());
}
- catch (CORBA::Exception &e)
+ catch (const CORBA::Exception &e)
{
ShowMessage ("CORBA Exception in InputMemoKeyPress: " + String (e._rep_id ()));
}
diff --git a/TAO/examples/Simple/fullname/README b/TAO/examples/Simple/fullname/README
deleted file mode 100644
index ec922a86286..00000000000
--- a/TAO/examples/Simple/fullname/README
+++ /dev/null
@@ -1,3 +0,0 @@
-This is a simple example that would take the first name and the last
-name of a person and return the full name of the individual through
-the "out" argument in the operation signature of the IDL.
diff --git a/TAO/examples/Simple/squareit/README b/TAO/examples/Simple/squareit/README
deleted file mode 100644
index b88331e80f5..00000000000
--- a/TAO/examples/Simple/squareit/README
+++ /dev/null
@@ -1,2 +0,0 @@
-This is a simple example that would take a number and return the
-square of the number through the same argument. \ No newline at end of file