lets get rid of the ()'s in filenames to make bsd users with their

ancient make tools work.



SVN revision: 70556
This commit is contained in:
Carsten Haitzler 2012-04-30 12:04:50 +00:00
parent 46aaf99d2c
commit b731b036d0
5 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ MODULE = illume-keyboard
filesdir = $(libdir)/enlightenment/modules/$(MODULE)/dicts
files_DATA = \
English_(US).dic \
English_(US)_Small.dic
English_US.dic \
English_US_Small.dic
EXTRA_DIST = $(files_DATA)

View File

@ -1790,7 +1790,7 @@ e_kbd_int_new(const char *themedir, const char *syskbds, const char *sysdicts)
if (il_kbd_cfg->dict)
ki->kbuf = e_kbd_buf_new(ki->sysdicts, il_kbd_cfg->dict);
else
ki->kbuf = e_kbd_buf_new(ki->sysdicts, "English_(US).dic");
ki->kbuf = e_kbd_buf_new(ki->sysdicts, "English_US.dic");
_e_kbd_int_layouts_list_update(ki);

View File

@ -48,7 +48,7 @@ il_kbd_config_init(E_Module *m)
il_kbd_cfg->version = 0;
il_kbd_cfg->use_internal = 1;
il_kbd_cfg->run_keyboard = NULL;
il_kbd_cfg->dict = eina_stringshare_add("English_(US).dic");
il_kbd_cfg->dict = eina_stringshare_add("English_US.dic");
il_kbd_cfg->zoom_level = 4;
il_kbd_cfg->slide_dim = 4;
il_kbd_cfg->hold_timer = 0.25;