summaryrefslogtreecommitdiff
path: root/TAO/tests/QtTests
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/QtTests')
-rw-r--r--TAO/tests/QtTests/client.cpp6
-rw-r--r--TAO/tests/QtTests/client.h8
-rw-r--r--TAO/tests/QtTests/test_i.cpp2
-rw-r--r--TAO/tests/QtTests/test_i.h2
4 files changed, 9 insertions, 9 deletions
diff --git a/TAO/tests/QtTests/client.cpp b/TAO/tests/QtTests/client.cpp
index ae3c8de8034..09d3f4f91ef 100644
--- a/TAO/tests/QtTests/client.cpp
+++ b/TAO/tests/QtTests/client.cpp
@@ -48,7 +48,7 @@ Client::Client (CORBA::ORB_ptr orb,
{
}
-Client::~Client (void)
+Client::~Client ()
{
delete this->slider_;
delete this->push_button_;
@@ -133,7 +133,7 @@ Client::create_widgets (/**/)
}
void
-Client::show (void)
+Client::show ()
{
this->mainwindow_.show ();
}
@@ -145,7 +145,7 @@ Client::remote_call (int val)
}
void
-Client::shutdown_call (void)
+Client::shutdown_call ()
{
this->server_->shutdown ();
}
diff --git a/TAO/tests/QtTests/client.h b/TAO/tests/QtTests/client.h
index c610cb064c2..06237659dc6 100644
--- a/TAO/tests/QtTests/client.h
+++ b/TAO/tests/QtTests/client.h
@@ -27,12 +27,12 @@ public:
QApplication &app);
///Dtor..
- ~Client (void);
+ ~Client ();
/// Adds the callbacks to the GUI underneath.....
- void create_widgets (void);
+ void create_widgets ();
- void show (void);
+ void show ();
void parse_args (int argc, ACE_TCHAR *argv[]);
@@ -43,7 +43,7 @@ public:
public slots:
/// Two slot handlers for the two widgets that we have
void remote_call (int val);
- void shutdown_call (void);
+ void shutdown_call ();
private:
/// A push button
diff --git a/TAO/tests/QtTests/test_i.cpp b/TAO/tests/QtTests/test_i.cpp
index c0074bd073f..f321fe0e5fa 100644
--- a/TAO/tests/QtTests/test_i.cpp
+++ b/TAO/tests/QtTests/test_i.cpp
@@ -7,7 +7,7 @@ LCD_Display_imp::LCD_Display_imp (CORBA::ORB_ptr orb)
}
void
-LCD_Display_imp::shutdown (void)
+LCD_Display_imp::shutdown ()
{
ACE_DEBUG ((LM_DEBUG,
"The ORB has been shutdown, Close the windows to exit\n"));
diff --git a/TAO/tests/QtTests/test_i.h b/TAO/tests/QtTests/test_i.h
index 055d2438111..562ba8595c5 100644
--- a/TAO/tests/QtTests/test_i.h
+++ b/TAO/tests/QtTests/test_i.h
@@ -33,7 +33,7 @@ public:
// ctor
- void shutdown (void);
+ void shutdown ();
void send_val (CORBA::Long val);