summaryrefslogtreecommitdiff
path: root/ACE/examples/ConfigViewer/ValueListCtrl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/ConfigViewer/ValueListCtrl.cpp')
-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);