summaryrefslogtreecommitdiff
path: root/TAO/tests/FL_Cube/client.cpp
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-01-28 15:36:15 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-01-28 15:36:15 +0000
commit8e2623740409f370574b2550fdaafd6ac2b74712 (patch)
treefd46d9924e4977b94da089e571649ee17cc7e8df /TAO/tests/FL_Cube/client.cpp
parent61fdef70a89a372bbaf37b42cbe8de73a37e0ffe (diff)
downloadATCD-8e2623740409f370574b2550fdaafd6ac2b74712.tar.gz
ChangeLogTag: Fri Jan 28 07:18:10 2005 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/tests/FL_Cube/client.cpp')
-rw-r--r--TAO/tests/FL_Cube/client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/FL_Cube/client.cpp b/TAO/tests/FL_Cube/client.cpp
index bb4a9dee3c5..3d6b5a7abdf 100644
--- a/TAO/tests/FL_Cube/client.cpp
+++ b/TAO/tests/FL_Cube/client.cpp
@@ -122,14 +122,14 @@ Client::show (void)
void
Client::x_cb (Fl_Widget*, void* cookie)
{
- Client *self = ACE_static_cast(Client*,cookie);
+ Client *self = static_cast<Client*> (cookie);
self->x_changed ();
}
void
Client::y_cb (Fl_Widget*, void* cookie)
{
- Client *self = ACE_static_cast(Client*,cookie);
+ Client *self = static_cast<Client*> (cookie);
self->y_changed ();
}