mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 22:06:15 +00:00
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:
parent
d20f85740a
commit
acc1409866
@ -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>
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -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");
|
||||||
}
|
}
|
||||||
|
@ -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")},
|
||||||
|
Loading…
Reference in New Issue
Block a user