]> Creatis software - creaImageIO.git/blobdiff - src2/creaImageIOWxTreeView.cpp
Correction du CmakeList pour les packcage sous win32
[creaImageIO.git] / src2 / creaImageIOWxTreeView.cpp
index 49c72ef98bd8d61bcc1c0be867ab7dade7677570..65669c8b1176faf5e1ad89c80d6b2de767e1f2fd 100644 (file)
@@ -4,9 +4,7 @@
 #include <wx/splitter.h>
 #include <wx/gdicmn.h>
 #include <boost/date_time/gregorian/gregorian.hpp>
-#include <boost/date_time/posix_time/posix_time.hpp>
-#include <boost/date_time/local_time_adjustor.hpp>
-#include <boost/date_time/c_local_time_adjustor.hpp>
+
 
 
 
@@ -480,12 +478,12 @@ namespace creaImageIO
                                for (int k=0; k<GetCtrl(l)->GetColumnCount(); k++)
                                {
                                        std::string val = (*j)->GetAttribute(mLevelList[l].key[k]);
-                                       if(((*j)->GetAttributeDescriptor(mLevelList[l].key[k])).isDateEntry())
+                                       if(((*j)->GetAttributeDescriptor(mLevelList[l].key[k])).isDateEntry()) // Date
                                        {
                                                boost::gregorian::date d1(boost::gregorian::from_undelimited_string(val));
                                                val = to_iso_extended_string(d1);
                                        }
-                                       else if(((*j)->GetAttributeDescriptor(mLevelList[l].key[k])).isTimeEntry())
+                                       else if(((*j)->GetAttributeDescriptor(mLevelList[l].key[k])).isTimeEntry()) // Time
                                        {
                                                if (val != "" || val != " ")
                                                        val = val.substr(0,2) + " : " + val.substr(2,2) + " : " + val.substr(4,2);