1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-02 06:26:45 +02:00

Removed dht window because it's not supported by the new public api

This commit is contained in:
Jfreegman
2013-08-27 18:30:38 -04:00
parent 894dc28c6f
commit 5cf982dfa1
4 changed files with 2 additions and 120 deletions

View File

@ -7,7 +7,6 @@
#include "friendlist.h"
#include "prompt.h"
#include "dhtstatus.h"
#include "toxic_windows.h"
extern char *DATA_FILE;
@ -167,10 +166,7 @@ ToxWindow *init_windows()
{
int n_prompt = add_window(m, new_prompt());
if (n_prompt == -1
|| add_window(m, new_friendlist()) == -1
//|| add_window(m, new_dhtstatus()) == -1
) {
if (n_prompt == -1 || add_window(m, new_friendlist()) == -1) {
fprintf(stderr, "add_window() failed.\n");
endwin();
exit(1);