diff options
author | David Walter Seikel | 2014-01-10 00:34:13 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-01-10 00:34:13 +1000 |
commit | 7be1aa19baa709eaf1e3c88c7e81093e2acec3ae (patch) | |
tree | dd62b6353d661fa42bbda4cc2a8e029c13ad60c2 /ClientHamr | |
parent | Clean out some basic window, toolbar, and menu bit rot. Add a log domain. (diff) | |
download | SledjHamr-7be1aa19baa709eaf1e3c88c7e81093e2acec3ae.zip SledjHamr-7be1aa19baa709eaf1e3c88c7e81093e2acec3ae.tar.gz SledjHamr-7be1aa19baa709eaf1e3c88c7e81093e2acec3ae.tar.bz2 SledjHamr-7be1aa19baa709eaf1e3c88c7e81093e2acec3ae.tar.xz |
Bit more anti bit rot and standards conforming comments.
Diffstat (limited to '')
-rw-r--r-- | ClientHamr/extantz/extantz.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ClientHamr/extantz/extantz.c b/ClientHamr/extantz/extantz.c index 13cb1d8..6eda717 100644 --- a/ClientHamr/extantz/extantz.c +++ b/ClientHamr/extantz/extantz.c | |||
@@ -1164,6 +1164,8 @@ EAPI_MAIN int elm_main(int argc, char **argv) | |||
1164 | // Eina_Bool gotWebKit = elm_need_web(); // Initialise ewebkit if it exists, or return EINA_FALSE if it don't. | 1164 | // Eina_Bool gotWebKit = elm_need_web(); // Initialise ewebkit if it exists, or return EINA_FALSE if it don't. |
1165 | 1165 | ||
1166 | _log_domain = eina_log_domain_register("extantz", NULL); | 1166 | _log_domain = eina_log_domain_register("extantz", NULL); |
1167 | // Don't do this, we need to clean up other stuff do, so set a cleat up function below. | ||
1168 | //elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED); | ||
1167 | 1169 | ||
1168 | // If you want efl to handle finding your bin/lib/data dirs, you must do this below. | 1170 | // If you want efl to handle finding your bin/lib/data dirs, you must do this below. |
1169 | elm_app_compile_bin_dir_set(PACKAGE_BIN_DIR); | 1171 | elm_app_compile_bin_dir_set(PACKAGE_BIN_DIR); |
@@ -1214,6 +1216,7 @@ EAPI_MAIN int elm_main(int argc, char **argv) | |||
1214 | elm_win_resize_object_add(gld->win, gld->bx); | 1216 | elm_win_resize_object_add(gld->win, gld->bx); |
1215 | evas_object_size_hint_weight_set(gld->bx, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); | 1217 | evas_object_size_hint_weight_set(gld->bx, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); |
1216 | evas_object_size_hint_align_set(gld->bx, EVAS_HINT_FILL, EVAS_HINT_FILL); | 1218 | evas_object_size_hint_align_set(gld->bx, EVAS_HINT_FILL, EVAS_HINT_FILL); |
1219 | // elm_win_resize_object_add(gld->bx, bg); | ||
1217 | evas_object_show(gld->bx); | 1220 | evas_object_show(gld->bx); |
1218 | 1221 | ||
1219 | win3 = elm_win_add(gld->win, "inlined", ELM_WIN_INLINED_IMAGE); | 1222 | win3 = elm_win_add(gld->win, "inlined", ELM_WIN_INLINED_IMAGE); |