Index: s10k/Vago/libs/DropTableWidget/droptablewidget.cpp
===================================================================
--- s10k/Vago/libs/DropTableWidget/droptablewidget.cpp	(revision 1092)
+++ s10k/Vago/libs/DropTableWidget/droptablewidget.cpp	(revision 1093)
@@ -146,10 +146,12 @@
 
     int idxFileName=fileCommand.indexOf(this->item(row,0)->text()); //Search first for the file name
-    int fileAbsoluteStartIdx=Util::indexOfBackward(fileCommand,"\"",idxFileName);
+
+    int fileAbsoluteStartIdx=fileCommand.lastIndexOf("\"",idxFileName);
 
     fileCommand.remove(0,fileAbsoluteStartIdx);
-    int fileAbsoluteEndIdx=fileCommand.indexOf('"',1); //1 to find the end quoate and not the start
 
-    return fileCommand.remove(fileAbsoluteEndIdx,(fileCommand.size()-1)-fileAbsoluteEndIdx);
+    int fileAbsoluteEndIdx=fileCommand.indexOf('"',1); //1 to find the end quote and not the start
+
+    return fileCommand.remove(fileAbsoluteEndIdx+1,(fileCommand.size()-1)-fileAbsoluteEndIdx);
 }
 
@@ -161,5 +163,5 @@
     command.remove(fileAbsoluteEndIdx,command.size()-1);
 
-    int fileAbsoluteStartIdx=Util::indexOfBackward(command,"\"",command.size()-1)+1;
+    int fileAbsoluteStartIdx=command.lastIndexOf("\"",command.size()-1)+1;
 
     return command.remove(0,fileAbsoluteStartIdx);
