Remove unused code.

This commit is contained in:
Michael Drake 2012-08-20 19:20:46 +01:00
parent 9a0a2ff90f
commit 74a9ec6de4
1 changed files with 0 additions and 15 deletions

View File

@ -30,8 +30,6 @@
#include "desktop/gui.h"
#include "desktop/search.h"
#include "desktop/selection.h"
#include "render/box.h"
#include "render/html.h"
#include "utils/log.h"
#include "utils/messages.h"
#include "utils/utils.h"
@ -59,19 +57,6 @@
#define NOF_ELEMENTS(array) (sizeof(array)/sizeof(*(array)))
#endif
struct list_entry {
unsigned start_idx; /* start position of match */
unsigned end_idx; /* end of match */
struct box *start_box; /* used only for html contents */
struct box *end_box;
struct selection *sel;
struct list_entry *prev;
struct list_entry *next;
};
static bool search_insert;
static struct find_window *fwin = NULL;