diff options
author | jstebbins <[email protected]> | 2008-09-08 23:11:15 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-09-08 23:11:15 +0000 |
commit | 91a3253e721ecd9313b1930aadffbb1902f8ab33 (patch) | |
tree | 37e069cb0e9e1009eb2143452426e677a593170e /gtk/src/main.c | |
parent | 4d231bd034d3f73efae01eee686896234c202a85 (diff) |
LinGui: Internalize all the icons so I don't have to install them in
a system directory. One step closer to being able to build a binary
that can stand on it's own without a bunch of additional resource files.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1678 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/src/main.c')
-rw-r--r-- | gtk/src/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/src/main.c b/gtk/src/main.c index 40307c8eb..100fe1946 100644 --- a/gtk/src/main.c +++ b/gtk/src/main.c @@ -40,6 +40,7 @@ #include "ghb-dvd.h" #include "ghbcellrenderertext.h" #include "values.h" +#include "icons.h" /* @@ -497,6 +498,7 @@ main (int argc, char *argv[]) gtk_set_locale (); gtk_init (&argc, &argv); + ghb_load_icons(); #if defined(__linux__) ghb_hal_init(); @@ -615,7 +617,7 @@ main (int argc, char *argv[]) // Everything should be go-to-go. Lets rock! gtk_main (); //I'd like to do this, but hb threads seem to persist for a while - //so closing crashes :\ + //so closing crashes :( //ghb_backend_close(); if (ud->queue) ghb_value_free(ud->queue); |