]> Creatis software - creaImageIO.git/blobdiff - src/creaImageIOWxExportDlg.cpp
(some of the) unused variables
[creaImageIO.git] / src / creaImageIOWxExportDlg.cpp
index 682cc894eb8910fd0159005d13f740616aeef698..873ebbdae9cf640f572ffb21ca138b3cf2f65bbc 100644 (file)
@@ -6,8 +6,9 @@ namespace creaImageIO
    WxExportDlg::WxExportDlg(wxWindow *parent, const std::vector<std::string> storages)
     : wxDialog(parent, -1,_T("EXPORT FILES TO STORAGE"), wxDefaultPosition, wxSize(260,150))
    {
-         int size = 16;
-       
+         //int size = 16;
+
+          /// \TODO fix warning: unused variable ExportText    
          wxStaticText * ExportText=new wxStaticText(this,-1,_T(" Storage to export: "), wxPoint(5,10));
          wxArrayString names;
          std::vector<std::string>::const_iterator it = storages.begin();
@@ -22,7 +23,8 @@ namespace creaImageIO
          // VALIDATION BUTTON
          wxButton *Ok = new wxButton(this, -1,_T("OK"), wxPoint(5,50) );
          Connect( Ok->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &WxExportDlg::OnOk ); 
-       
+
+          /// \TODO fix warning: unused variable Cancel        
          wxButton *Cancel = new wxButton(this, wxID_CANCEL,_T("CANCEL"), wxPoint(100,50) );
          Layout();