summaryrefslogtreecommitdiff
path: root/ACE/examples
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-07-21 10:14:33 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-07-21 10:14:33 +0200
commitad197ab1179e257f24ae95f54425812dd3ffd6cc (patch)
treeb75337e57a161b5f5e42694a7b0cb307f25999d7 /ACE/examples
parent4e4a1260bc4bb65abdde4542cbdaba20e270ed45 (diff)
downloadATCD-ad197ab1179e257f24ae95f54425812dd3ffd6cc.tar.gz
Removed redundant whitespace
* ACE/ACEXML/parser/parser/Parser.cpp: * ACE/examples/ConfigViewer/ValueListCtrl.cpp: * ACE/tests/CDR_Array_Test.cpp: * TAO/TAO_IDL/be/be_interface.cpp: * TAO/orbsvcs/tests/Notify/lib/Periodic_Consumer.cpp:
Diffstat (limited to 'ACE/examples')
-rw-r--r--ACE/examples/ConfigViewer/ValueListCtrl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/examples/ConfigViewer/ValueListCtrl.cpp b/ACE/examples/ConfigViewer/ValueListCtrl.cpp
index 2c4fba57dc1..53bbc04cdc5 100644
--- a/ACE/examples/ConfigViewer/ValueListCtrl.cpp
+++ b/ACE/examples/ConfigViewer/ValueListCtrl.cpp
@@ -101,7 +101,7 @@ void ValueListCtrl::OnModify(wxCommandEvent& event)
long Item = GetSelectedItem();
if(Item == -1)
{
- return ;
+ return;
}
wxListItem ListItem;
ACE_Configuration::VALUETYPE Type = (ACE_Configuration::VALUETYPE)GetItemData(Item);
@@ -159,7 +159,7 @@ void ValueListCtrl::OnDelete(wxCommandEvent& event)
long Item = GetSelectedItem();
if(Item == -1)
{
- return ;
+ return;
}
wxString Text = GetItemText(Item);
m_pConfig->remove_value(m_Key, Text);
@@ -171,7 +171,7 @@ void ValueListCtrl::OnRename(wxCommandEvent& event)
long Item = GetSelectedItem();
if(Item == -1)
{
- return ;
+ return;
}
wxListItem ListItem;
ACE_Configuration::VALUETYPE Type = (ACE_Configuration::VALUETYPE)GetItemData(Item);