summaryrefslogtreecommitdiffstats
path: root/Source/WXDialog/wxCMakeSetup.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-23 17:32:14 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-23 17:32:14 (GMT)
commit48fe81acdd94ace2a03e76c6d55eba9993571964 (patch)
tree079da02c531c82b5fce4f49bd29714881b755314 /Source/WXDialog/wxCMakeSetup.cxx
parent5843ae455e86be59425910f510d211a9cf8a2eeb (diff)
downloadCMake-48fe81acdd94ace2a03e76c6d55eba9993571964.zip
CMake-48fe81acdd94ace2a03e76c6d55eba9993571964.tar.gz
CMake-48fe81acdd94ace2a03e76c6d55eba9993571964.tar.bz2
Try to remove some warnings
Diffstat (limited to 'Source/WXDialog/wxCMakeSetup.cxx')
-rw-r--r--Source/WXDialog/wxCMakeSetup.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WXDialog/wxCMakeSetup.cxx b/Source/WXDialog/wxCMakeSetup.cxx
index d6bd37b..644c9ac 100644
--- a/Source/WXDialog/wxCMakeSetup.cxx
+++ b/Source/WXDialog/wxCMakeSetup.cxx
@@ -87,8 +87,8 @@ public:
{
wxPanel *panel = new wxPanel(this, -1);
panel->SetBackgroundColour(*wxRED);
- wxTextCtrl * text = new wxTextCtrl(panel, -1, "Test", wxPoint(40, 5));
- wxButton * bt = new wxButton(panel, -1, "Test", wxPoint(-1, 5));
+ new wxTextCtrl(panel, -1, "Test", wxPoint(40, 5));
+ new wxButton(panel, -1, "Test", wxPoint(-1, 5));
}
};