From e0e63649dc830cd63ae4e7a958e224ef3b2a1375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Thu, 30 Sep 2010 05:19:31 +0200 Subject: Redesign the library and related components. This step is needed, since the current design is quite chaotic and it would not be possible to finish the application. There's still a lot to be done. After this step, it's time to implement the rest of LdLua. --- src/ld-window-main.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/ld-window-main.c') diff --git a/src/ld-window-main.c b/src/ld-window-main.c index d37488f..236e118 100644 --- a/src/ld-window-main.c +++ b/src/ld-window-main.c @@ -13,11 +13,13 @@ #include "config.h" #include "ld-window-main.h" + +#include "ld-symbol.h" +#include "ld-symbol-category.h" +#include "ld-library.h" + #include "ld-document.h" #include "ld-canvas.h" -#include "ld-library.h" -#include "ld-symbol-category.h" -#include "ld-symbol.h" /** @@ -286,7 +288,7 @@ cb_load_category (gpointer key, gpointer value, gpointer user_data) g_return_if_fail (LD_IS_SYMBOL_CATEGORY (cat)); pbuf = gdk_pixbuf_new_from_file_at_size - (cat->image_path, TOOLBAR_ICON_WIDTH, -1, NULL); + (ld_symbol_category_get_image_path (cat), TOOLBAR_ICON_WIDTH, -1, NULL); g_return_if_fail (pbuf != NULL); img = gtk_image_new_from_pixbuf (pbuf); -- cgit v1.2.3