QTfrontend/hwmap.cpp
changeset 497 adf1aee202c6
parent 486 7ea71cd3acd5
child 1066 1f1b3686a2b0
equal deleted inserted replaced
496:00465a8ef129 497:adf1aee202c6
    13  *
    13  *
    14  * You should have received a copy of the GNU General Public License
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program; if not, write to the Free Software
    15  * along with this program; if not, write to the Free Software
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */
    17 
    17 
       
    18 #include "hwconsts.h"
    18 #include "hwmap.h"
    19 #include "hwmap.h"
    19 
    20 
    20 HWMap::HWMap() :
    21 HWMap::HWMap() :
    21   TCPBase(false)
    22   TCPBase(false)
    22 {
    23 {
    33 }
    34 }
    34 
    35 
    35 QStringList HWMap::setArguments()
    36 QStringList HWMap::setArguments()
    36 {
    37 {
    37   QStringList arguments;
    38   QStringList arguments;
       
    39   arguments << cfgdir->absolutePath();
    38   arguments << QString("%1").arg(ipc_port);
    40   arguments << QString("%1").arg(ipc_port);
    39   arguments << "landpreview";
    41   arguments << "landpreview";
    40   return arguments;
    42   return arguments;
    41 }
    43 }
    42 
    44