aboutsummaryrefslogtreecommitdiffstats
path: root/src/interface.c
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2010-10-19 01:28:46 +0200
committerGravatar Tom Willemsen2010-10-19 01:28:46 +0200
commitc34819ee2c5d8d4fb536ea469588d8f0ccbf08e0 (patch)
treeca72a46cbe21d308d89b84077a43f036f58aed03 /src/interface.c
parent767ca99d338cddf3dff25d31e54739dbff400ad8 (diff)
downloadeye-on-manga-c34819ee2c5d8d4fb536ea469588d8f0ccbf08e0.tar.gz
eye-on-manga-c34819ee2c5d8d4fb536ea469588d8f0ccbf08e0.zip
Data
Data is gotten from an sqlite3 database New series can be added to the database
Diffstat (limited to 'src/interface.c')
-rw-r--r--src/interface.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/interface.c b/src/interface.c
index 5e68160..2e54ecd 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -2,6 +2,7 @@
#include "interface.h"
#include "c-main-window.h"
#include "c-new-item-dialog.h"
+#include "data.h"
void interface_show_main_window(void)
{
@@ -10,9 +11,7 @@ void interface_show_main_window(void)
window = c_main_window_new();
gtk_widget_show_all(window);
- c_main_window_add_line(C_MAIN_WINDOW(window), "Biomega", 2, 0);
- c_main_window_add_line(C_MAIN_WINDOW(window), "Blame!", 7, 10);
- c_main_window_add_line(C_MAIN_WINDOW(window), "Hellsing", 2, 14);
+ c_main_window_load(C_MAIN_WINDOW(window));
}
GtkWidget *interface_show_new_item_dialog(GtkWindow *window)