]> Creatis software - bbtk.git/blobdiff - packages/wx/src/bbwxCommandButton.cxx
#3382 BBTK Feature New Normal - box Tab selection output
[bbtk.git] / packages / wx / src / bbwxCommandButton.cxx
index 206d90c4774c8690ceef2572c61fd86231229001..24fccf7ddee40244ce4213aba1eccfe274a6fc64 100644 (file)
@@ -118,9 +118,7 @@ namespace bbwx
            {
              // If no executer : create a totally independant interpreter
              I = bbtk::Interpreter::New();
-           }
-         else 
-           {
+           } else {
              // If executer : create an interpreter using E
              I = bbtk::Interpreter::New(E);
            }
@@ -140,17 +138,15 @@ namespace bbwx
          {
            ok=false;
            ccommand=commandstr.substr(pos1,commandstr.length()-pos1 );
-         } 
-       else 
-         {
+         }  else  {
            ccommand=commandstr.substr(pos1,pos2-pos1);
          }
        for ( i=0 ; i < ccommand.length() ; i++)
          {
            if (ccommand[i]==39) // '
-             {
-               ccommand[i]=34;  // "
-             }
+           {
+                       ccommand[i]=34;  // "
+           }
          }             
        I->InterpretLine( ccommand );
        pos1=pos2+1;