~ubuntu-branches/ubuntu/utopic/hedgewars/utopic

« back to all changes in this revision

Viewing changes to QTfrontend/tcpBase.cpp

  • Committer: Package Import Robot
  • Author(s): Dmitry E. Oboukhov
  • Date: 2011-09-23 10:16:55 UTC
  • mto: (19.1.2 sid) (1.3.1) (21.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: package-import@ubuntu.com-20110923101655-yrajfbj5b0v4asbt
Tags: upstream-0.9.16
ImportĀ upstreamĀ versionĀ 0.9.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * Hedgewars, a free turn based strategy game
3
3
 * Copyright (c) 2006-2007 Igor Ulyanov <iulyanov@gmail.com>
 
4
 * Copyright (c) 2007-2011 Andrey Korotaev <unC0Rr@gmail.com>
4
5
 *
5
6
 * This program is free software; you can redistribute it and/or modify
6
7
 * it under the terms of the GNU General Public License as published by
71
72
  QProcess * process;
72
73
  process = new QProcess;
73
74
  connect(process, SIGNAL(error(QProcess::ProcessError)), this, SLOT(StartProcessError(QProcess::ProcessError)));
74
 
  QStringList arguments=setArguments();
 
75
  QStringList arguments=getArguments();
75
76
 
76
77
  // redirect everything written on stdout/stderr
77
78
  if(isDevBuild)