rename a few icons; fix a typo; complain (softly) when an icon cannot be found

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7208 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2003-06-24 10:41:22 +00:00
parent d20f85740a
commit acc1409866
9 changed files with 22 additions and 6 deletions

View File

@ -1,5 +1,8 @@
2003-06-24 Jean-Marc Lasgouttes <lasgouttes@lyx.org> 2003-06-24 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* images/*: rename a few icons because to follow the latest lfun
renaming frenzy
* configure.m4: add some code to workaround zsh incompatibilities * configure.m4: add some code to workaround zsh incompatibilities
(bug 977) (bug 977)
@ -37,9 +40,10 @@
2003-06-12 Angus Leeming <leeming@lyx.org> 2003-06-12 Angus Leeming <leeming@lyx.org>
* scripts/fig2pdftex.sh (legacy_xfig): Extract the necessary magic from * scripts/fig2pdftex.sh (legacy_xfig): Extract the necessary magic
epstopdf and write it as a shell function, as suggested by Martin Vermeer. from epstopdf and write it as a shell function, as suggested by
Means that we are not dependent on the presence of epstopdf or of perl. Martin Vermeer. Means that we are not dependent on the presence of
epstopdf or of perl.
2003-06-12 Angus Leeming <leeming@lyx.org> 2003-06-12 Angus Leeming <leeming@lyx.org>
@ -104,7 +108,8 @@
2003-06-03 Angus Leeming <leeming@lyx.org> 2003-06-03 Angus Leeming <leeming@lyx.org>
* external_templates: modify the templates to use the converter" mechanism. * external_templates: modify the templates to use the converter"
mechanism.
2003-06-02 John Levon <levon@movementarian.org> 2003-06-02 John Levon <levon@movementarian.org>

View File

@ -1,3 +1,11 @@
2003-06-24 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* ToolbarBackend.C (getIcon): complain when icon cannot be found
2003-06-24 "Garst R. Reese" <reese@isn.net>
* debug.C: fix typo
2003-06-23 Jean-Marc Lasgouttes <lasgouttes@lyx.org> 2003-06-23 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x

View File

@ -237,5 +237,8 @@ string const ToolbarBackend::getIcon(int action)
return fullname; return fullname;
} }
lyxerr[Debug::GUI] << "Cannot find icon for command \""
<< lyxaction.getActionName(f.action)
<< ' ' << f.argument << '"' << endl;
return LibFileSearch("images", "unknown", "xpm"); return LibFileSearch("images", "unknown", "xpm");
} }

View File

@ -34,7 +34,7 @@ error_item errorTags[] = {
{ Debug::INIT, "init", N_("Program initialisation")}, { Debug::INIT, "init", N_("Program initialisation")},
{ Debug::KEY, "key", N_("Keyboard events handling")}, { Debug::KEY, "key", N_("Keyboard events handling")},
{ Debug::GUI, "gui", N_("GUI handling")}, { Debug::GUI, "gui", N_("GUI handling")},
{ Debug::PARSER, "parser", N_("Lyxlex grammer parser")}, { Debug::PARSER, "parser", N_("Lyxlex grammar parser")},
{ Debug::LYXRC, "lyxrc", N_("Configuration files reading")}, { Debug::LYXRC, "lyxrc", N_("Configuration files reading")},
{ Debug::KBMAP, "kbmap", N_("Custom keyboard definition")}, { Debug::KBMAP, "kbmap", N_("Custom keyboard definition")},
{ Debug::LATEX, "latex", N_("LaTeX generation/execution")}, { Debug::LATEX, "latex", N_("LaTeX generation/execution")},