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:
@ -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);
|
||||
|
Reference in New Issue
Block a user