aboutsummaryrefslogtreecommitdiffstats
path: root/lcd4linux.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-01-23 06:17:18 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-01-23 06:17:18 +0000
commit5279f0ae745e91e24299faa254f4c4375971114e (patch)
tree013c1d2a26d499b1ea3417ce9ff754af16014804 /lcd4linux.c
parent2b191ce8986564f905535c23fcd70f85309d3917 (diff)
downloadlcd4linux-5279f0ae745e91e24299faa254f4c4375971114e.tar.gz
[lcd4linux @ 2006-01-23 06:17:18 by reinelt]
timer widget added git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@623 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'lcd4linux.c')
-rw-r--r--lcd4linux.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/lcd4linux.c b/lcd4linux.c
index 062ce51..3cbb583 100644
--- a/lcd4linux.c
+++ b/lcd4linux.c
@@ -1,4 +1,4 @@
-/* $Id: lcd4linux.c,v 1.79 2005/09/02 05:27:08 reinelt Exp $
+/* $Id: lcd4linux.c,v 1.80 2006/01/23 06:17:18 reinelt Exp $
*
* LCD4Linux
*
@@ -23,6 +23,9 @@
*
*
* $Log: lcd4linux.c,v $
+ * Revision 1.80 2006/01/23 06:17:18 reinelt
+ * timer widget added
+ *
* Revision 1.79 2005/09/02 05:27:08 reinelt
* double-fork daemonize patch from Petri Damsten
*
@@ -389,6 +392,8 @@
#include "layout.h"
#include "plugin.h"
+#include "widget.h"
+#include "widget_timer.h"
#ifdef WITH_DMALLOC
#include <dmalloc.h>
@@ -652,6 +657,9 @@ int main(int argc, char *argv[])
}
free(driver);
+ /* register timer widget */
+ widget_timer_register();
+
/* go into interactive mode (display has been initialized) */
if (interactive >= 1) {
interactive_mode();