]> Creatis software - creaImageIO.git/blobdiff - src/creaImageIOWxEditFieldsPanel.cpp
(some of the) unused variables
[creaImageIO.git] / src / creaImageIOWxEditFieldsPanel.cpp
index 6db827b7eb9cf608ebc5481d36756cf03f304879..0fc55762a8871c1d5df3e918c421e75c8e4912c0 100644 (file)
@@ -28,6 +28,7 @@ namespace creaImageIO
   {
     GimmickDebugMessage(1,"WxCustomizeConfigPanel::WxCustomizeConfigPanel"
                        <<std::endl);
+        /// \TODO fix warning: unused variable cp
        wxStaticText * cp=new wxStaticText(this,-1,_T(" Attribute to change: "), wxPoint(5,10));
        wxArrayString as;
        std::vector<std::string>::const_iterator it;
@@ -39,9 +40,11 @@ namespace creaImageIO
        std::string val=node->GetAttribute(keys[0]);
        if(val.compare("")==0){val="?";}
 
+        /// \TODO fix warning: unused variable av
        wxStaticText * av=new wxStaticText(this,-1,_T(" Current Value: "), wxPoint(5,40));
        actualVal=new wxStaticText(this,-1,crea::std2wx(val), wxPoint(110,40));
 
+        /// \TODO fix warning: unused variable nv
        wxStaticText * nv=new wxStaticText(this,-1,_T(" New Value: "), wxPoint(5,70));
        newVal=new wxTextCtrl(this, wxID_ANY, crea::std2wx(val), wxPoint(110,70), wxSize(220,20));