summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/session.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/session.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/session.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/session.cpp b/noncore/apps/opie-console/session.cpp
index f4fbcf2..d0ace6c 100644
--- a/noncore/apps/opie-console/session.cpp
+++ b/noncore/apps/opie-console/session.cpp
@@ -47,2 +47,4 @@ void Session::connect() {
+ m_connected = true;
+
qWarning("connection in session");
@@ -52,4 +54,4 @@ void Session::connect() {
m_layer, SLOT(send(const QByteArray&) ) );
-
}
+
void Session::disconnect() {
@@ -59,2 +61,4 @@ void Session::disconnect() {
+ m_connected = false;
+
QObject::disconnect(m_layer, SIGNAL(received(const QByteArray&) ),
@@ -64,2 +68,3 @@ void Session::disconnect() {
}
+
void Session::setName( const QString& na){
@@ -67,2 +72,3 @@ void Session::setName( const QString& na){
}
+
void Session::setWidgetStack( QWidgetStack* wid ) {
@@ -90 +96,5 @@ void Session::setEmulationWidget( WidgetLayer* lay ) {
*/
+
+bool Session::isConnected() {
+ return m_connected;
+}