summaryrefslogtreecommitdiffstats
path: root/launcher/widgets/fake_widget.c
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/widgets/fake_widget.c')
-rw-r--r--launcher/widgets/fake_widget.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/launcher/widgets/fake_widget.c b/launcher/widgets/fake_widget.c
deleted file mode 100644
index 70b6918c..00000000
--- a/launcher/widgets/fake_widget.c
+++ /dev/null
@@ -1,24 +0,0 @@
-#include "fake_widget.h"
-
-void fake_widget_setup(LauncherSettings *settings, void ** context_ptr) {
- (void) settings;
- *context_ptr = NULL;
-}
-
-void fake_widget_activate(LauncherSettings *settings, void *context) {
- (void) settings;
- (void) context;
-}
-
-void fake_widget_loop(LauncherEvent event, LauncherSettings *settings, void *context) {
- (void) event;
- (void) settings;
- (void) context;
-
- return true;
-}
-
-void fake_widget_resign(LauncherSettings *settings, void *context) {
- (void) settings;
- (void) context;
-}