summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/recorddialog.cpp
Unidiff
Diffstat (limited to 'noncore/tools/remote/recorddialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/remote/recorddialog.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/noncore/tools/remote/recorddialog.cpp b/noncore/tools/remote/recorddialog.cpp
index f7cd30c..cfab730 100644
--- a/noncore/tools/remote/recorddialog.cpp
+++ b/noncore/tools/remote/recorddialog.cpp
@@ -16,11 +16,12 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 16
17#include "recorddialog.h" 17#include "recorddialog.h"
18 18
19RecordDialog::RecordDialog(QWidget *parent=0, const char *name=0):QDialog(parent, name) 19RecordDialog::RecordDialog(QWidget *parent, const char *name)
20 :QDialog(parent, name)
20{ 21{
21 QVBoxLayout *layout = new QVBoxLayout(this); 22 QVBoxLayout *layout = new QVBoxLayout(this);
22 QHBoxLayout *hlayout = new QHBoxLayout(this); 23 QHBoxLayout *hlayout = new QHBoxLayout(this);
23 24
24 layout->insertSpacing(0,5); 25 layout->insertSpacing(0,5);
25 output = new QTextView("Please enter the name of the new remote, and press Return\n", 0, this, "output"); 26 output = new QTextView("Please enter the name of the new remote, and press Return\n", 0, this, "output");
26 layout->insertWidget(-1, output); 27 layout->insertWidget(-1, output);
@@ -32,13 +33,13 @@ RecordDialog::RecordDialog(QWidget *parent=0, const char *name=0):QDialog(parent
32 input = new QLineEdit(this, "input"); 33 input = new QLineEdit(this, "input");
33 hlayout->insertWidget(-1, input, 1); 34 hlayout->insertWidget(-1, input, 1);
34 hlayout->insertSpacing(-1, 5); 35 hlayout->insertSpacing(-1, 5);
35 36
36 QPushButton *ret = new QPushButton("Return", this, "return"); 37 QPushButton *ret = new QPushButton("Return", this, "return");
37 hlayout->insertWidget(-1, ret); 38 hlayout->insertWidget(-1, ret);
38 hlayout->insertSpacing(-1, 5); 39 hlayout->insertSpacing(-1, 5);
39 connect(ret, SIGNAL(clicked()), this, SLOT(retPressed()) ); 40 connect(ret, SIGNAL(clicked()), this, SLOT(retPressed()) );
40 where = 0; 41 where = 0;
41 42
42 record = new OProcess; 43 record = new OProcess;
43} 44}
44 45