diff options
Diffstat (limited to '')
-rw-r--r-- | src/de/gultsch/chat/ui/XmppActivity.java | 4 |
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(); } |