diff --git a/listbox.hpp b/listbox.hpp
deleted file mode 100644
index 26b2e72eb61e0e19eb73c4d67635ffcd9c8f2056..0000000000000000000000000000000000000000
--- a/listbox.hpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef LISTBOX_HPP
-#define LISTBOX_HPP
-#include "graphics.hpp"
-#include "widget.hpp"
-
-class ListBox : public Widget
-{
-protected:
-
-    std::vector<std::string> _s;
-    int _scroll, displaynum;
-
-    int _selected;
-
-
-public:
-    ListBox(Application*,int, int, int,int, std::vector<std::string>);
-
-    void draw() override;
-    void handle(genv::event) override;
-    bool isover(int mouse_x,int mouse_y) override;
-    std::string getter() override;
-
-};
-
-#endif // LISTBOX_HPP