1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

Renamed ServerActivity to ConversationActivity to prevent confusion (ServerActivity <-> ServersActivity)

This commit is contained in:
Sebastian Kaspari 2010-03-10 23:30:59 +01:00
parent fa9cdd5f1d
commit be872c25c7
2 changed files with 3 additions and 3 deletions

View File

@ -68,9 +68,9 @@ import org.yaaic.receiver.ServerReceiver;
*
* @author Sebastian Kaspari <sebastian@yaaic.org>
*/
public class ServerActivity extends Activity implements ServiceConnection, ServerListener, ChannelListener, OnItemClickListener, OnKeyListener, OnItemSelectedListener
public class ConversationActivity extends Activity implements ServiceConnection, ServerListener, ChannelListener, OnItemClickListener, OnKeyListener, OnItemSelectedListener
{
public static final String TAG = "Yaaic/ServerActivity";
public static final String TAG = "Yaaic/ConversationActivity";
private int serverId;
private Server server;

View File

@ -126,7 +126,7 @@ public class ServersActivity extends ListActivity implements ServiceConnection,
binder.connect(server);
}
Intent intent = new Intent(this, ServerActivity.class);
Intent intent = new Intent(this, ConversationActivity.class);
intent.putExtra("serverId", server.getId());
startActivityForResult(intent, 0);
}