summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/mainview.cpp
Unidiff
Diffstat (limited to 'noncore/tools/remote/mainview.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/tools/remote/mainview.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/noncore/tools/remote/mainview.cpp b/noncore/tools/remote/mainview.cpp
index 724eba9..8c87785 100644
--- a/noncore/tools/remote/mainview.cpp
+++ b/noncore/tools/remote/mainview.cpp
@@ -31,14 +31,12 @@ MainView::MainView(QWidget *parent, const char *name) : QWidget(parent, name)
31 remote = new RemoteTab(tabs); 31 remote = new RemoteTab(tabs);
32 learn = new LearnTab(tabs); 32 learn = new LearnTab(tabs);
33 config = new ConfigTab(tabs); 33 config = new ConfigTab(tabs);
34 help = new HelpTab(tabs); 34 help = new HelpTab(tabs);
35 connect(config, SIGNAL(remotesChanged()), this, SLOT(updateRemotesList()) ); 35 connect(config, SIGNAL(remotesChanged()), this, SLOT(updateRemotesList()) );
36 36
37 remote->setIRSocket(fd);
38
39 tabs->addTab(remote, tr("Remote") ); 37 tabs->addTab(remote, tr("Remote") );
40 tabs->addTab(learn,tr("Learn") ); 38 tabs->addTab(learn,tr("Learn") );
41 tabs->addTab(config,tr("Config") ); 39 tabs->addTab(config,tr("Config") );
42 tabs->addTab(help, tr("Help") ); 40 tabs->addTab(help, tr("Help") );
43 41
44 printf("1\n"); 42 printf("1\n");
@@ -46,22 +44,11 @@ MainView::MainView(QWidget *parent, const char *name) : QWidget(parent, name)
46 printf("2\n"); 44 printf("2\n");
47 45
48 remote->setConfig(cfg); 46 remote->setConfig(cfg);
49 config->setConfig(cfg); 47 config->setConfig(cfg);
50} 48}
51 49
52int MainView::getIRSocket()
53{
54 return fd;
55}
56
57void MainView::setIRSocket(int newfd)
58{
59 fd = newfd;
60 remote->setIRSocket(fd);
61}
62
63void MainView::updateRemotesList() 50void MainView::updateRemotesList()
64{ 51{
65 remote->updateRemotesList(); 52 remote->updateRemotesList();
66 printf("MainView: got remotes changed signal\n"); 53 printf("MainView: got remotes changed signal\n");
67} 54}