]> Creatis software - bbtk.git/commitdiff
not center elements in ComboBox
authorEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Tue, 16 Jun 2020 21:00:45 +0000 (23:00 +0200)
committerEduardo DAVILA <eduardo.davila@creatis.insa-lyon.fr>
Tue, 16 Jun 2020 21:00:45 +0000 (23:00 +0200)
kernel/appli/bbi/bbi.cxx
packages/wx/src/bbwxComboBox.cxx

index 7918d1967bd2ccd5ca61c65f0b19b97ac4a7c4d4..c4729fc90b52f4e7fb261368c7f2a2a601a08eb0 100644 (file)
  #  knowledge of the CeCILL-B license and that you accept its terms.
  # ------------------------------------------------------------------------ */
 
+//__asm__(".symver fcntl64,fcntl64@GLIBC_2.27");
 
 #ifdef _USE_WXWIDGETS_
 
+
 #include <exception>
 
 //==========================================================================
@@ -202,14 +204,12 @@ bool wxBBIApp::OnCmdLineParsed(wxCmdLineParser& parser)
 
 
 
-
-
-
 //==========================================================================
 // The `main program' equivalent, creating the windows and returning the
 // main frame
 bool wxBBIApp::OnInit( )
 {
+
 //Borrame
 //FILE *ff; ff = fopen ("/tmp/wt.log","a+"); fprintf(ff,"EED wxBBIApp::OnInit\n"); fclose(ff);
 
index 26d8e1768f98b6748fff65dbb942fac0b5671665..411d8db04b3d06e309feec6899e6d78cf9b79861 100644 (file)
@@ -155,7 +155,11 @@ void ComboBoxWidget::FillItems( int iSelection, std::vector< std::string > lstIn
 {
        int i,size=lstIn.size();
 
-// Patch to put spaces at the beginin
+
+#if defined(_WIN32)
+       // Patch to put spaces at the beginin
+#else
+       // Patch to put spaces at the beginin
        int strLength=-1;
        // Looking for the longest string
        for (i=0 ;i<size; i++)
@@ -169,9 +173,10 @@ void ComboBoxWidget::FillItems( int iSelection, std::vector< std::string > lstIn
                len2 = strLength - lstIn[i].length();
                for (ii=0;ii<len2;ii++)
                {       
-                       lstIn[i]="  "+lstIn[i];  // 3 space characters
+                       lstIn[i]="  "+lstIn[i];  // spaces characters
                } // for ii
        } // for i
+#endif // defined(_WIN32)
        
        itemcontainer->Clear();
        for (i=0;i<size; i++)