summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/rfcpopup.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/rfcpopup.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/rfcpopup.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/rfcpopup.cpp b/noncore/net/opietooth/manager/rfcpopup.cpp
index 1b53f4b..cc87b6c 100644
--- a/noncore/net/opietooth/manager/rfcpopup.cpp
+++ b/noncore/net/opietooth/manager/rfcpopup.cpp
@@ -37,45 +37,49 @@ RfcCommPopup::RfcCommPopup()
a->addTo( this );
connect( a, SIGNAL( activated() ),
this, SLOT( slotFoo() ) );
/* bar action */
a = new QAction( );
a->setText( "Bar" );
a->addTo( this );
connect( a, SIGNAL( activated() ),
this, SLOT( slotBar() ) );
};
RfcCommPopup::~RfcCommPopup() {
/* delete m_con;
delete m_dis;
delete m_foo;
delete m_bar; */
}
void RfcCommPopup::slotConnect() {
+
qWarning("connect");
+
+
+
PPPDialog pppDialog;
pppDialog.showMaximized();
pppDialog.exec();
}
void RfcCommPopup::slotDisconnect() {
qWarning("slot disconnected");
}
void RfcCommPopup::slotFoo() {
qWarning("slotFoo");
}
void RfcCommPopup::slotBar() {
qWarning("slotBar");
};