Correctedlicense

This commit is contained in:
Tristan B. Kildaire 2020-10-17 14:32:26 +02:00
parent 14f47922d6
commit e34c5b75a9
1 changed files with 8 additions and 9 deletions

View File

@ -35,25 +35,24 @@ public final class Connection : Thread
private void worker() private void worker()
{ {
/**
* Setup the tab for this connection
*/
te(); te();
box = getChatPane(); box = getChatPane();
gui.notebook.add(box); gui.notebook.add(box);
gui.notebook.setTabLabelText(box, "user@"~address.toString()); gui.notebook.setTabLabelText(box, "user@"~address.toString());
gui.notebook.showAll(); gui.notebook.showAll();
tl(); tl();
writeln("connection gtk unlock");
/**
* Connects and logs in
*/
client = new DClient(address); client = new DClient(address);
client.auth("bru", "kak"); /* TODO: DO this without auth (the list in the loop, crahses server) */ client.auth("bru", "kak"); /* TODO: DO this without auth (the list in the loop, crahses server) */
writeln("br");
/* Display all channels */
channelList(); channelList();
/** /**