aboutsummaryrefslogtreecommitdiffstats
path: root/src/de/gultsch/chat/ui/XmppActivity.java
diff options
context:
space:
mode:
authorDaniel Gultsch <daniel.gultsch@rwth-aachen.de>2014-01-27 20:40:42 +0100
committerDaniel Gultsch <daniel.gultsch@rwth-aachen.de>2014-01-27 20:40:42 +0100
commit4f902d8210d50a586c7ece1bb7da2ab26fd18da5 (patch)
treeb15d34a909443f79ac10d28f23eca19cf1c3301e /src/de/gultsch/chat/ui/XmppActivity.java
parent898b0ca8c485888e06e2b5b1c798eebce1a6dabc (diff)
conversation archiveable. new conversation will find or restart old conversations
Diffstat (limited to '')
-rw-r--r--src/de/gultsch/chat/ui/XmppActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de/gultsch/chat/ui/XmppActivity.java b/src/de/gultsch/chat/ui/XmppActivity.java
index c15482ac..ce65ab5e 100644
--- a/src/de/gultsch/chat/ui/XmppActivity.java
+++ b/src/de/gultsch/chat/ui/XmppActivity.java
@@ -20,7 +20,7 @@ public abstract class XmppActivity extends Activity {
XmppConnectionBinder binder = (XmppConnectionBinder) service;
xmppConnectionService = binder.getService();
xmppConnectionServiceBound = true;
- servConnected();
+ onBackendConnected();
}
@Override
@@ -47,5 +47,5 @@ public abstract class XmppActivity extends Activity {
}
}
- abstract void servConnected();
+ abstract void onBackendConnected();
}